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 cfd757a commit 976f188Copy full SHA for 976f188
modules/hackage-quirks.nix
@@ -77,9 +77,11 @@ in [
77
# https://github.com/commercialhaskell/stack/issues/5963
78
({config, lib, pkgs, ...}:
79
{ _file = "haskell.nix/overlays/hackage-quirks.nix#stack"; } //
80
- lib.mkIf (config.name == "stack" && builtins.compareVersions config.version "2.9.1" <= 0) {
+ lib.mkIf (config.name == "stack" && builtins.compareVersions config.version "2.9.3" <= 0) {
81
cabalProjectLocal = ''
82
- constraints: rio-prettyprint <0.1.4.0
+ constraints: unix-compat <0.7${
83
+ lib.optionalString (builtins.compareVersions config.version "2.9.1" <= 0)
84
+ " rio-prettyprint <0.1.4.0"}
85
'';
86
}
87
)
0 commit comments