diff options
author | Alan Pearce | 2024-05-19 00:15:18 +0200 |
---|---|---|
committer | Alan Pearce | 2024-05-19 00:15:18 +0200 |
commit | e362831422e1a48b9ef231c5db36588939133fb1 (patch) | |
tree | 8525da2fb98d4a32fc38932a6f9963453508be87 | |
parent | 5b66e2a93a853b156268996afdb3755acc5c9fe7 (diff) | |
download | nix-packages-e362831422e1a48b9ef231c5db36588939133fb1.tar.lz nix-packages-e362831422e1a48b9ef231c5db36588939133fb1.tar.zst nix-packages-e362831422e1a48b9ef231c5db36588939133fb1.zip |
ci: don't try to build invalid packages for copying to cache
-rw-r--r-- | flake.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/flake.nix b/flake.nix index 484f924..7544357 100644 --- a/flake.nix +++ b/flake.nix @@ -28,7 +28,7 @@ all = pkgs.symlinkJoin { name = "all"; - paths = builtins.attrValues lpkgs; + paths = (import ./ci.nix { inherit pkgs; }).cachePkgs; }; in (lpkgs // { |