arunisaac pushed a commit to branch master
in repository guix.
commit cdccdec1f2a28f9091372141d25eca380e1c1e53
Author: Arun Isaac <[email protected]>
Date: Thu Aug 23 14:37:57 2018 +0530
gnu: ghc-quickcheck-instances: Update to 0.3.18.
* gnu/packages/haskell-check.scm (ghc-quickcheck-instances): Update to
0.3.18.
[arguments]: Allow building with newer base-compat.
---
gnu/packages/haskell-check.scm | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/haskell-check.scm b/gnu/packages/haskell-check.scm
index 1d673c6..c3ef85f 100644
--- a/gnu/packages/haskell-check.scm
+++ b/gnu/packages/haskell-check.scm
@@ -9,6 +9,7 @@
;;; Copyright © 2017 rsiddharth <[email protected]>
;;; Copyright © 2017, 2018 Tobias Geerinckx-Rice <[email protected]>
;;; Copyright © 2018 Tonton <[email protected]>
+;;; Copyright © 2018 Arun Isaac <[email protected]>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -342,7 +343,7 @@ development.")
(define-public ghc-quickcheck-instances
(package
(name "ghc-quickcheck-instances")
- (version "0.3.16.1")
+ (version "0.3.18")
(source
(origin
(method url-fetch)
@@ -352,8 +353,10 @@ development.")
version ".tar.gz"))
(sha256
(base32
- "01v5bs7r9yvhkvb4yc9bqnacy8r6cy2gr9lnmwx40n5apgi0gcbz"))))
+ "1bh1pzz5fdcqvzdcirqxna6fnjms02min5md716299g5niz46w55"))))
(build-system haskell-build-system)
+ (arguments
+ `(#:configure-flags (list "--allow-newer=base-compat")))
(inputs
`(("ghc-quickcheck" ,ghc-quickcheck)
("ghc-base-compat" ,ghc-base-compat)