File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change 70
70
compiler = "ghc928" ;
71
71
config = import ./config.nix ;
72
72
73
+ inherit ( nixpkgs ) lib ;
74
+
73
75
traceNames = prefix : builtins . mapAttrs ( n : v :
74
76
if builtins . isAttrs v
75
77
then if v ? type && v . type == "derivation"
88
90
"aarch64-darwin"
89
91
] ;
90
92
91
- forEachSystem = nixpkgs . lib . genAttrs systems ;
93
+ forEachSystem = lib . genAttrs systems ;
92
94
93
95
in traceHydraJobs ( {
94
96
inherit config ;
124
126
# flake outputs so that we can incorporate the args passed
125
127
# to the compat layer (e.g. sourcesOverride).
126
128
overlays = [ allOverlays . combined ]
127
- ++ nixpkgs . lib . optional checkMaterialization
129
+ ++ lib . optional checkMaterialization
128
130
( final : prev : {
129
131
haskell-nix = prev . haskell-nix // {
130
132
checkMaterialization = true ;
181
183
builtins . listToAttrs (
182
184
map
183
185
( pkg : { name = pkg . name ; value = pkg ; } )
184
- ( nixpkgs . lib . collect
185
- nixpkgs . lib . isDerivation
186
+ ( lib . collect
187
+ lib . isDerivation
186
188
( import ./test
187
189
rec {
188
190
haskellNix = self . internal . compat { inherit system ; } ;
205
207
206
208
requiredJobs = forEachSystem ( system :
207
209
let
208
- inherit ( self . legacyPackages . ${ system } ) lib ;
209
210
names = x :
210
211
lib . filter
211
212
( n : n != "recurseForDerivations" && n != "meta" )
You can’t perform that action at this time.
0 commit comments