File tree Expand file tree Collapse file tree 2 files changed +2
-7
lines changed Expand file tree Collapse file tree 2 files changed +2
-7
lines changed Original file line number Diff line number Diff line change @@ -125,8 +125,6 @@ dimension "Nixpkgs version" nixpkgsVersions (nixpkgsName: pinnedNixpkgsSrc:
125
125
ghc = pkgs . buildPackages . haskell-nix . compiler . ${ compiler-nix-name } ;
126
126
} // pkgs . lib . optionalAttrs runTests {
127
127
inherit ( build ) tests tools maintainer-scripts maintainer-script-cache ;
128
- } // pkgs . lib . optionalAttrs ( ifdLevel >= 2 ) {
129
- inherit ( pkgs . haskell-nix . iserv-proxy-exes . ${ compiler-nix-name } ) iserv-proxy ;
130
128
} // pkgs . lib . optionalAttrs ( ifdLevel >= 3 ) {
131
129
hello = ( pkgs . haskell-nix . hackage-package { name = "hello" ; version = "1.0.0.2" ; inherit evalPackages compiler-nix-name ; } ) . getComponent "exe:hello" ;
132
130
} ) ;
Original file line number Diff line number Diff line change @@ -1082,18 +1082,15 @@ final: prev: {
1082
1082
inherit ( final . buildPackages ) nix ;
1083
1083
} // final . lib . optionalAttrs ( final . stdenv . hostPlatform . libc == "glibc" ) {
1084
1084
inherit ( final ) glibcLocales ;
1085
- } // final . lib . optionalAttrs ( ifdLevel > 0 ) ( {
1085
+ } // final . lib . optionalAttrs ( ifdLevel > 0 ) {
1086
1086
# Things that require one IFD to build (the inputs should be in level 0)
1087
1087
boot-alex = final . buildPackages . haskell-nix . bootstrap . packages . alex ;
1088
1088
boot-happy = final . buildPackages . haskell-nix . bootstrap . packages . happy ;
1089
1089
boot-hscolour = final . buildPackages . haskell-nix . bootstrap . packages . hscolour ;
1090
1090
ghc = final . buildPackages . haskell-nix . compiler . ${ compiler-nix-name } ;
1091
1091
ghc-boot-packages-nix = final . recurseIntoAttrs
1092
1092
final . ghc-boot-packages-nix . ${ compiler-nix-name } ;
1093
- } // final . lib . optionalAttrs ( __compareVersions final . buildPackages . haskell-nix . compiler . ${ compiler-nix-name } . version "9.4" < 0 ) {
1094
- # Only needed for older GHC versions (see iserv-proxy-exes)
1095
- ghc-extra-projects-nix = final . ghc-extra-projects . ${ compiler-nix-name } . plan-nix ;
1096
- } ) // final . lib . optionalAttrs ( ifdLevel > 1 ) {
1093
+ } // final . lib . optionalAttrs ( ifdLevel > 1 ) {
1097
1094
# Things that require two levels of IFD to build (inputs should be in level 1)
1098
1095
nix-tools-unchecked = final . pkgsBuildBuild . haskell-nix . nix-tools-unchecked ;
1099
1096
} // final . lib . optionalAttrs ( ifdLevel > 1
You can’t perform that action at this time.
0 commit comments