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 5ea1196 commit 1eaa396Copy full SHA for 1eaa396
builder/setup-builder.nix
@@ -82,7 +82,7 @@ let
82
fi
83
done
84
[ -f ./Setup ] || (echo Failed to build Setup && exit 1)
85
- runHook preBuild
+ runHook postBuild
86
'';
87
88
installPhase = ''
overlays/hackage-quirks.nix
@@ -25,6 +25,16 @@ in { haskell-nix = prev.haskell-nix // {
25
];
26
};
27
28
+ # TODO remove this when `dependent-sum-0.7.1.0` constraint on `some` has been updated.
29
+ # See https://github.com/haskell/haskell-language-server/issues/2969
30
+ # and https://github.com/obsidiansystems/dependent-sum/issues/71
31
+ haskell-language-server = {
32
+ cabalProject = ''
33
+ packages: .
34
+ constraints: dependent-sum >=0.7.1.0
35
+ '';
36
+ };
37
+
38
lsp-test = {
39
cabalProject = ''
40
packages: .
0 commit comments