summary refs log tree commit diff
path: root/pkgs/development/haskell-modules
diff options
context:
space:
mode:
authorKosyrev Serge <serge.kosyrev@iohk.io>2018-02-25 06:58:16 +0300
committerKosyrev Serge <serge.kosyrev@iohk.io>2018-02-25 06:58:32 +0300
commit673785d18a532ccf8041a9eab7ea360e11cb77bb (patch)
tree50cb4e95a7945aeb59297f49999a44d0579efdd8 /pkgs/development/haskell-modules
parent00b24f7a69fd7bc8c76b9298ceafc7bddb29929b (diff)
downloadnixlib-673785d18a532ccf8041a9eab7ea360e11cb77bb.tar
nixlib-673785d18a532ccf8041a9eab7ea360e11cb77bb.tar.gz
nixlib-673785d18a532ccf8041a9eab7ea360e11cb77bb.tar.bz2
nixlib-673785d18a532ccf8041a9eab7ea360e11cb77bb.tar.lz
nixlib-673785d18a532ccf8041a9eab7ea360e11cb77bb.tar.xz
nixlib-673785d18a532ccf8041a9eab7ea360e11cb77bb.tar.zst
nixlib-673785d18a532ccf8041a9eab7ea360e11cb77bb.zip
ghc841 | text-lens: new failure with bumped GHC
Diffstat (limited to 'pkgs/development/haskell-modules')
-rw-r--r--pkgs/development/haskell-modules/configuration-ghc-8.4.x.nix15
1 files changed, 11 insertions, 4 deletions
diff --git a/pkgs/development/haskell-modules/configuration-ghc-8.4.x.nix b/pkgs/development/haskell-modules/configuration-ghc-8.4.x.nix
index 1ba2634ebe42..e98e50c7bce0 100644
--- a/pkgs/development/haskell-modules/configuration-ghc-8.4.x.nix
+++ b/pkgs/development/haskell-modules/configuration-ghc-8.4.x.nix
@@ -685,12 +685,19 @@ self: super: {
     jailbreak       = true;
   });
 
+  ## Issue: https://github.com/ChrisPenner/rasa/issues/54
   text-lens = overrideCabal super.text-lens (drv: {
+    ## Failures:
+    ##   test/Spec.hs:136:
+    ##   1) TextLens.range gets "" if invalid range
+    ##        uncaught exception: ErrorCall (Data.Text.Array.new: size overflow
+    ##        CallStack (from HasCallStack):
+    ##          error, called at libraries/text/Data/Text/Array.hs:132:20 in text-1.2.3.0:Data.Text.Array)
+    ## Randomized with seed 2114194349
+    ## Finished in 0.0017 seconds
+    doCheck         = false;
     ## Setup: Encountered missing dependencies:
-    ## base >=4.9.0.0 && <4.10,
-    ## extra >=1.4.10 && <1.5,
-    ## hspec >=2.2.4 && <2.3,
-    ## lens ==4.14.*
+    ## extra >=1.4.10 && <1.5, lens ==4.14.*
     jailbreak       = true;
   });