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 c94ed63 commit 417a7daCopy full SHA for 417a7da
modules/cabal-project.nix
@@ -116,6 +116,10 @@ in {
116
type = attrsOf (functionTo attrs);
117
default = {};
118
};
119
+ supportHpack = mkOption {
120
+ type = bool;
121
+ default = false;
122
+ };
123
124
# Used by mkCabalProjectPkgSet
125
pkg-def-extras = mkOption {
test/cabal-hpack/default.nix
@@ -15,6 +15,7 @@ let
15
project = project' {
16
inherit compiler-nix-name evalPackages;
17
src = testSrc "cabal-hpack";
18
+ supportHpack = true;
19
inherit modules;
20
21
0 commit comments