File tree 2 files changed +14
-4
lines changed
2 files changed +14
-4
lines changed Original file line number Diff line number Diff line change 25
25
passthru = { inherit service ; } ;
26
26
} ;
27
27
28
- scripts = forEnvironments ( environment : recurseIntoAttrs {
28
+ # Until complete removal of some iohk-nix deprecated environments which have
29
+ # dangling dependencies such as shelley_qa, explicitly declare the
30
+ # environments we we want included.
31
+ environments' = pkgs . lib . getAttrs [ "mainnet" "preprod" "preview" "sanchonet" ] environments ;
32
+
33
+ scripts = forEnvironmentsCustom ( environment : recurseIntoAttrs {
29
34
submit-api = mkScript environment ;
30
- } ) ;
35
+ } ) environments' ;
31
36
in scripts
Original file line number Diff line number Diff line change 33
33
exePath = "${ scriptBin } /bin/cardano-node-${ service . environment } " ;
34
34
} ;
35
35
36
- in forEnvironments ( environment : recurseIntoAttrs rec {
36
+ # Until complete removal of some iohk-nix deprecated environments which have
37
+ # dangling dependencies such as shelley_qa, explicitly declare the
38
+ # environments we we want included.
39
+ environments' = pkgs . lib . getAttrs [ "mainnet" "preprod" "preview" "sanchonet" ] environments ;
40
+
41
+ in forEnvironmentsCustom ( environment : recurseIntoAttrs rec {
37
42
node = mkScript environment ;
38
- } )
43
+ } ) environments'
You can’t perform that action at this time.
0 commit comments