File tree 1 file changed +2
-6
lines changed
1 file changed +2
-6
lines changed Original file line number Diff line number Diff line change 39
39
40
40
zippedToolsNoIfdFor = fragment-name :
41
41
let
42
+ # stringifyInputs = inputs: pkgs.lib.mapAttrsToList (name: value: pkgs.lib.trace "${name}=${value}" "${value}") inputs;
42
43
stringifyInputs = inputs : map ( x : "${ x } " ) ( builtins . attrValues inputs ) ;
43
44
44
45
fragment-drv = "static-nix-tools-outputs.hydraJobs.${ pkgs . hostPlatform . system } .zipped.${ fragment-name } " ;
45
46
in
46
47
pkgs . runCommand "${ pkgs . hostPlatform . system } -all-nix-tools" {
47
- requiredSystemFeatures = [ "recursive-nix" ] ;
48
+ # requiredSystemFeatures = [ "recursive-nix" ];
48
49
nativeBuildInputs =
49
50
[ pkgs . nix pkgs . gitMinimal ]
50
51
++ stringifyInputs inputs
51
52
++ stringifyInputs inputs . haskellNix . inputs ;
52
-
53
- buildInputs =
54
- [ pkgs . nix pkgs . gitMinimal ]
55
- ++ stringifyInputs inputs
56
- ++ stringifyInputs inputs . haskellNix . inputs ;
57
53
} ''
58
54
export HOME=$(mktemp -d)
59
55
mkdir $out
You can’t perform that action at this time.
0 commit comments