We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 66fe89d commit 4f74434Copy full SHA for 4f74434
nix/outputs.nix
@@ -83,9 +83,12 @@ let
83
static-haskell-packages //
84
extra-artifacts;
85
86
+ devShells =
87
+ (non-profiled-shells) //
88
+ { profiled = mkShell project.projectVariants.profiled; };
89
+
90
non-profiled-shells = rec {
91
default = ghc96;
- profiled = mkShell project.projectVariants.profiled;
92
ghc810 = mkShell project.projectVariants.ghc810;
93
ghc96 = mkShell project.projectVariants.ghc96;
94
ghc98 = mkShell project.projectVariants.ghc98;
0 commit comments