We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec9e65c commit ffb2d45Copy full SHA for ffb2d45
flake.nix
@@ -25,8 +25,6 @@
25
import ./nix/packages.nix { inherit inputs buildSystem; }
26
);
27
28
- defaultPackage = __mapAttrs (_: a: a.default) inputs.self.packages;
29
-
30
devShells = lib.genAttrs supportedSystems (
31
system: let
32
all = lib.genAttrs inputs.self.internal.installerClusters (
@@ -35,7 +33,9 @@
35
33
in all // { default = all.mainnet; }
36
34
37
38
- devShell = __mapAttrs (_: a: a.default) inputs.self.devShells;
+ # Compatibility with older Nix:
+ defaultPackage = __mapAttrs (_: a: a.default) inputs.self.outputs.packages;
+ devShell = __mapAttrs (_: a: a.default) inputs.self.outputs.devShells;
39
40
hydraJobs = {
41
installer = lib.genAttrs (supportedSystems ++ ["x86_64-windows"]) (
0 commit comments