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 e4e8f0a commit a9dc70aCopy full SHA for a9dc70a
nix/haskell-nix-flake.nix
@@ -91,18 +91,8 @@ in
91
defaultPackage = haskell-nix-flake.packages."unison-cli-main:exe:unison";
92
93
devShells = let
94
- mkDevShell = pkg:
95
- shellFor {
96
- packages = _hpkgs: [pkg];
97
- ## Enabling Hoogle causes us to rebuild GHC.
98
- withHoogle = false;
99
- };
+ mkDevShell = pkg: shellFor {packages = _hpkgs: [pkg];};
100
in
101
- {
102
- local = shellFor {
103
- packages = _hpkgs: builtins.attrValues localPackages;
104
105
106
- }
+ {local = shellFor {packages = _hpkgs: builtins.attrValues localPackages;};}
107
// pkgs.lib.mapAttrs (_name: mkDevShell) localPackages;
108
}
0 commit comments