summary refs log tree commit diff
path: root/pkgs/development/haskell-modules/configuration-common.nix
diff options
context:
space:
mode:
authorsternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org>2021-05-04 13:34:35 +0200
committersternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org>2021-05-04 13:34:35 +0200
commit648a5b14fb2bd10456e54e7ad9f596946877021a (patch)
tree24d331403ed7e0670cf9bc33132c2a9376959ab4 /pkgs/development/haskell-modules/configuration-common.nix
parent990d12641e2ffc56816e52a6eaa866b150f75ddf (diff)
downloadnixpkgs-648a5b14fb2bd10456e54e7ad9f596946877021a.tar
nixpkgs-648a5b14fb2bd10456e54e7ad9f596946877021a.tar.gz
nixpkgs-648a5b14fb2bd10456e54e7ad9f596946877021a.tar.bz2
nixpkgs-648a5b14fb2bd10456e54e7ad9f596946877021a.tar.lz
nixpkgs-648a5b14fb2bd10456e54e7ad9f596946877021a.tar.xz
nixpkgs-648a5b14fb2bd10456e54e7ad9f596946877021a.tar.zst
nixpkgs-648a5b14fb2bd10456e54e7ad9f596946877021a.zip
haskellPackages.ihaskell-{display,basic}: jailbreak
Version bounds on base are too strict:
https://github.com/gibiansky/IHaskell/issues/1217

Fixes evaluation of top-level ihaskell.
Diffstat (limited to 'pkgs/development/haskell-modules/configuration-common.nix')
-rw-r--r--pkgs/development/haskell-modules/configuration-common.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix
index a9443528f90..8b2151e995b 100644
--- a/pkgs/development/haskell-modules/configuration-common.nix
+++ b/pkgs/development/haskell-modules/configuration-common.nix
@@ -1801,4 +1801,9 @@ self: super: {
   # https://github.com/diagrams/diagrams-cairo/issues/77
   diagrams-cairo = doJailbreak super.diagrams-cairo;
 
+  # Too strict version bounds on base
+  # https://github.com/gibiansky/IHaskell/issues/1217
+  ihaskell-display = doJailbreak super.ihaskell-display;
+  ihaskell-basic = doJailbreak super.ihaskell-basic;
+
 } // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super