1
0
Fork 0
mirror of https://github.com/zhaofengli/attic.git synced 2025-03-05 08:17:05 +00:00

ci-installer.nix: Only install the client

This commit is contained in:
Zhaofeng Li 2023-03-21 18:45:34 -06:00
parent a8a30288fa
commit 3c58b2d2ce

View file

@ -41,7 +41,9 @@ let
'';
makeBootstrap = system: let
package = self.packages.${system}.attic;
package =
if system == "x86_64-linux" then self.packages.${system}.attic-client-static
else self.packages.${system}.attic-client;
in ''
"${system}" = (mkFakeDerivation {
name = "${package.name}";