nix: keep fshim and finit names
test / test (push) Successful in 22s Details

Signed-off-by: Ophestra Umiker <cat@ophivana.moe>
This commit is contained in:
Ophestra Umiker 2024-11-06 14:59:28 +09:00
parent ad80be721b
commit 3962705126
Signed by: cat
SSH Key Fingerprint: SHA256:gQ67O0enBZ7UdZypgtspB2FDM1g3GVw8nX0XSdcFw8Q
1 changed files with 2 additions and 4 deletions

View File

@ -34,8 +34,8 @@ buildGoModule rec {
{ {
Version = "v${version}"; Version = "v${version}";
Fsu = "/run/wrappers/bin/fsu"; Fsu = "/run/wrappers/bin/fsu";
Fshim = "${placeholder "out"}/bin/.fshim"; Fshim = "${placeholder "out"}/bin/fshim";
Finit = "${placeholder "out"}/bin/.finit"; Finit = "${placeholder "out"}/bin/finit";
}; };
buildInputs = [ buildInputs = [
@ -54,7 +54,5 @@ buildGoModule rec {
} }
mv $out/bin/fsu $out/bin/.fsu mv $out/bin/fsu $out/bin/.fsu
mv $out/bin/fshim $out/bin/.fshim
mv $out/bin/finit $out/bin/.finit
''; '';
} }