mirror of
https://github.com/rosenpass/rosenpass.git
synced 2025-12-05 20:40:02 -08:00
This implicates a change from nixpkgs-fmt to nixfmt. Nixfmt will become the new standard on nix formatting, sanctioned by the nixpkgs. To verify that these changes are purely in whitespace, but not semantic: git diff --ignore-all-space -w HEAD^! That will only show newline changes, make the diffing somewhat easier. Signed-off-by: wucke13 <wucke13+github@gmail.com>
31 lines
816 B
Nix
31 lines
816 B
Nix
{
|
|
lib,
|
|
stdenvNoCC,
|
|
runCommandNoCC,
|
|
pkgsStatic,
|
|
rosenpass,
|
|
rosenpass-oci-image,
|
|
rp,
|
|
}@args:
|
|
|
|
let
|
|
version = rosenpass.version;
|
|
|
|
# select static packages on Linux, default packages otherwise
|
|
package = if stdenvNoCC.hostPlatform.isLinux then pkgsStatic.rosenpass else args.rosenpass;
|
|
rp = if stdenvNoCC.hostPlatform.isLinux then pkgsStatic.rp else args.rp;
|
|
oci-image =
|
|
if stdenvNoCC.hostPlatform.isLinux then
|
|
pkgsStatic.rosenpass-oci-image
|
|
else
|
|
args.rosenpass-oci-image;
|
|
in
|
|
runCommandNoCC "lace-result" { } ''
|
|
mkdir {bin,$out}
|
|
tar -cvf $out/rosenpass-${stdenvNoCC.hostPlatform.system}-${version}.tar \
|
|
-C ${package} bin/rosenpass lib/systemd \
|
|
-C ${rp} bin/rp
|
|
cp ${oci-image} \
|
|
$out/rosenpass-oci-image-${stdenvNoCC.hostPlatform.system}-${version}.tar.gz
|
|
''
|