aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/haskell.scm
diff options
context:
space:
mode:
authorRicardo Wurmus <rekado@elephly.net>2018-02-17 14:01:15 +0100
committerRicardo Wurmus <rekado@elephly.net>2018-02-17 14:01:15 +0100
commit9729f9756c6f4b8376fc619b1330b05b8892c21a (patch)
tree59b12f1fdb3eb05786f4923a4a3d2ac8328bdaad /gnu/packages/haskell.scm
parent150062f19060687dbf8e2cbe6a22c2f8600e7c4e (diff)
downloadguix-9729f9756c6f4b8376fc619b1330b05b8892c21a.tar
guix-9729f9756c6f4b8376fc619b1330b05b8892c21a.tar.gz
gnu: ghc-mtl: Remove ghc-transformers from inputs.
* gnu/packages/haskell.scm (ghc-mtl)[arguments]: Explain why we need to allow a newer version of the transformers package. [inputs]: Remove ghc-transformers.
Diffstat (limited to 'gnu/packages/haskell.scm')
-rw-r--r--gnu/packages/haskell.scm5
1 files changed, 3 insertions, 2 deletions
diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm
index e0ac1b8544..0b5bdec92a 100644
--- a/gnu/packages/haskell.scm
+++ b/gnu/packages/haskell.scm
@@ -1678,10 +1678,11 @@ configuration. This library provides the common bits for writing custom
(base32
"1icdbj2rshzn0m1zz5wa7v3xvkf6qw811p4s7jgqwvx1ydwrvrfa"))))
(build-system haskell-build-system)
+ ;; This is an official revision, relaxing the requirement transformers ==
+ ;; 0.4 to transformers >= 0.4 && < 0.6; see
+ ;; https://hackage.haskell.org/package/mtl-2.2.1/revision/1.cabal
(arguments
`(#:configure-flags (list "--allow-newer=transformers")))
- (inputs
- `(("ghc-transformers" ,ghc-transformers)))
(home-page "https://github.com/ekmett/mtl")
(synopsis
"Monad classes, using functional dependencies")