Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 442419f

Browse files
committedFeb 28, 2024
WIP
1 parent 7769123 commit 442419f

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed
 

‎nix-tools/static/zipped.nix

+2-6
Original file line numberDiff line numberDiff line change
@@ -39,21 +39,17 @@ let
3939

4040
zippedToolsNoIfdFor = fragment-name:
4141
let
42+
# stringifyInputs = inputs: pkgs.lib.mapAttrsToList (name: value: pkgs.lib.trace "${name}=${value}" "${value}") inputs;
4243
stringifyInputs = inputs: map (x: "${x}") (builtins.attrValues inputs);
4344

4445
fragment-drv = "static-nix-tools-outputs.hydraJobs.${pkgs.hostPlatform.system}.zipped.${fragment-name}";
4546
in
4647
pkgs.runCommand "${pkgs.hostPlatform.system}-all-nix-tools" {
47-
requiredSystemFeatures = [ "recursive-nix" ];
48+
# requiredSystemFeatures = [ "recursive-nix" ];
4849
nativeBuildInputs =
4950
[ pkgs.nix pkgs.gitMinimal ]
5051
++ stringifyInputs inputs
5152
++ stringifyInputs inputs.haskellNix.inputs;
52-
53-
buildInputs =
54-
[ pkgs.nix pkgs.gitMinimal ]
55-
++ stringifyInputs inputs
56-
++ stringifyInputs inputs.haskellNix.inputs;
5753
} ''
5854
export HOME=$(mktemp -d)
5955
mkdir $out

0 commit comments

Comments
 (0)
Please sign in to comment.