From 3c58b2d2cef196f91303a0e477976f3114992e51 Mon Sep 17 00:00:00 2001 From: Zhaofeng Li Date: Tue, 21 Mar 2023 18:45:34 -0600 Subject: [PATCH] ci-installer.nix: Only install the client --- ci-installer.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ci-installer.nix b/ci-installer.nix index 4758c9d..767a725 100644 --- a/ci-installer.nix +++ b/ci-installer.nix @@ -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}";