Skip to content

Commit ffb2d45

Browse files
committed
[DDW-1223] Revert some unnecessary changes
1 parent ec9e65c commit ffb2d45

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

flake.nix

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,6 @@
2525
import ./nix/packages.nix { inherit inputs buildSystem; }
2626
);
2727

28-
defaultPackage = __mapAttrs (_: a: a.default) inputs.self.packages;
29-
3028
devShells = lib.genAttrs supportedSystems (
3129
system: let
3230
all = lib.genAttrs inputs.self.internal.installerClusters (
@@ -35,7 +33,9 @@
3533
in all // { default = all.mainnet; }
3634
);
3735

38-
devShell = __mapAttrs (_: a: a.default) inputs.self.devShells;
36+
# Compatibility with older Nix:
37+
defaultPackage = __mapAttrs (_: a: a.default) inputs.self.outputs.packages;
38+
devShell = __mapAttrs (_: a: a.default) inputs.self.outputs.devShells;
3939

4040
hydraJobs = {
4141
installer = lib.genAttrs (supportedSystems ++ ["x86_64-windows"]) (

0 commit comments

Comments
 (0)