mirror of
https://github.com/zhaofengli/attic.git
synced 2025-03-05 16:27:06 +00:00
ci-installer.nix: Only install the client
This commit is contained in:
parent
a8a30288fa
commit
3c58b2d2ce
1 changed files with 3 additions and 1 deletions
|
@ -41,7 +41,9 @@ let
|
||||||
'';
|
'';
|
||||||
|
|
||||||
makeBootstrap = system: 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 ''
|
in ''
|
||||||
"${system}" = (mkFakeDerivation {
|
"${system}" = (mkFakeDerivation {
|
||||||
name = "${package.name}";
|
name = "${package.name}";
|
||||||
|
|
Loading…
Add table
Reference in a new issue