File tree Expand file tree Collapse file tree 2 files changed +2
-6
lines changed Expand file tree Collapse file tree 2 files changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -77,7 +77,7 @@ in addPackageKeys {
77
77
( fromUntil "9.2.0.0" "9.3" ../overlays/patches/ghc-lib-parser-9.2-global-unique-counters-in-rts.patch )
78
78
( fromUntil "9.4.0.0" "9.7" ../overlays/patches/ghc-lib-parser-9.4-global-unique-counters-in-rts.patch )
79
79
] ;
80
- packages . " ghc-lib-parser-8.10.7.20220219" . components . library . pre-existing = [ "ghc-boot-th" ] ;
80
+ packages . ghc-lib-parser . components . library . pre-existing = [ "ghc-boot-th" ] ;
81
81
82
82
# See https://github.com/haskell-nix/hnix/pull/1053
83
83
packages . hnix . patches = [
Original file line number Diff line number Diff line change @@ -790,14 +790,10 @@ final: prev: {
790
790
} )
791
791
( { config , options , ...} : {
792
792
use-package-keys = true ;
793
- package-keys = map ( p : p . pkg-name ) plan-json . install-plan ++ map ( p : to-key p ) plan-json . install-plan ++ map ( p : p . pkg-name + "-" + p . pkg-version ) plan-json . install-plan ;
793
+ package-keys = map ( p : p . pkg-name ) plan-json . install-plan ++ map ( p : to-key p ) plan-json . install-plan ;
794
794
packages = final . lib . listToAttrs ( map ( p : {
795
795
name = to-key p ;
796
796
value = final . lib . modules . mkAliasDefinitions ( options . packages . ${ p . pkg-name } ) ;
797
- } ) ( final . lib . filter ( p : to-key p != p . pkg-name ) plan-json . install-plan ) )
798
- // final . lib . listToAttrs ( map ( p : {
799
- name = to-key p ;
800
- value = final . lib . modules . mkAliasDefinitions ( options . packages . ${ p . pkg-name + "-" + p . pkg-version } ) ;
801
797
} ) ( final . lib . filter ( p : to-key p != p . pkg-name ) plan-json . install-plan ) ) ;
802
798
} )
803
799
( { lib , ...} : {
You can’t perform that action at this time.
0 commit comments