File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -121,7 +121,7 @@ dimension "Nixpkgs version" nixpkgsVersions (nixpkgsName: pinnedNixpkgsSrc:
121
121
# Native builds
122
122
# TODO: can we merge this into the general case by picking an appropriate "cross system" to mean native?
123
123
native = pkgs . recurseIntoAttrs ( {
124
- roots = pkgs . haskell-nix . roots' { inherit compiler-nix-name evalPackages ; } ifdLevel
124
+ roots = pkgs . haskell-nix . roots' { inherit compiler-nix-name evalPackages ; } ifdLevel ;
125
125
} // pkgs . lib . optionalAttrs runTests {
126
126
inherit ( build ) tests tools maintainer-scripts maintainer-script-cache ;
127
127
} // pkgs . lib . optionalAttrs ( ifdLevel >= 3 ) rec {
Original file line number Diff line number Diff line change @@ -705,7 +705,7 @@ final: prev: {
705
705
inherit ( callProjectResults ) index-state-max ;
706
706
tool = final . buildPackages . haskell-nix . tool' evalPackages pkg-set . config . compiler . nix-name ;
707
707
tools = final . buildPackages . haskell-nix . tools' evalPackages pkg-set . config . compiler . nix-name ;
708
- roots = final . haskell-nix . roots { inherit ( pkg-set . config ) compiler . nix-name ; inherit evalPackages ; }
708
+ roots = final . haskell-nix . roots { compiler-nix-name = pkg-set . config . compiler . nix-name ; inherit evalPackages ; } ;
709
709
projectFunction = haskell-nix : haskell-nix . cabalProject' ;
710
710
inherit projectModule buildProject ;
711
711
} ;
@@ -966,7 +966,7 @@ final: prev: {
966
966
stack-nix = callProjectResults . projectNix ;
967
967
tool = final . buildPackages . haskell-nix . tool' evalPackages pkg-set . config . compiler . nix-name ;
968
968
tools = final . buildPackages . haskell-nix . tools' evalPackages pkg-set . config . compiler . nix-name ;
969
- roots = final . haskell-nix . roots { inherit ( pkg-set . config ) compiler . nix-name ; inherit evalPackages ; }
969
+ roots = final . haskell-nix . roots { compiler-nix-name = pkg-set . config . compiler . nix-name ; inherit evalPackages ; } ;
970
970
projectFunction = haskell-nix : haskell-nix . stackProject' ;
971
971
inherit projectModule buildProject ;
972
972
} ;
You can’t perform that action at this time.
0 commit comments