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.
2 parents ead52c1 + a277ad4 commit 484f4daCopy full SHA for 484f4da
default.nix
@@ -76,8 +76,8 @@
76
, executableNamesToShellComplete ? [ "hnix" ]
77
78
79
-# Include Hoogle into derivation
80
-, withHoogle ? true
+# Include Hoogle executable and DB into derivation
+, withHoogle ? false
81
82
83
# Nix by default updates and uses locally configured nixpkgs-unstable channel
shell.nix
@@ -1 +1,7 @@
1
-{} @ attrs: (import ./. attrs).env
+attrs@{...}:
2
+let defaultAttrs = {
3
+ # Defaults are put in this form deliberately. Details: #748
4
+ withHoogle = true;
5
+ compiler = "ghc8101";
6
+};
7
+in (import ./. (defaultAttrs // attrs)).env
0 commit comments