gnu: ghc-fgl: Update to 5.6.0.0.

* gnu/packages/haskell.scm (ghc-fgl): Update to 5.6.0.0.
[arguments]: Allow building with newer hspec.
This commit is contained in:
Arun Isaac 2018-08-23 12:32:46 +05:30
parent 4e51d3e9ae
commit b1a1600030
No known key found for this signature in database
GPG key ID: 2E25EE8B61802BB3

View file

@ -15,6 +15,7 @@
;;; Copyright © 2017, 2018 Tobias Geerinckx-Rice <me@tobias.gr>
;;; Copyright © 2018 Tonton <tonton@riseup.net>
;;; Copyright © 2018 Timothy Sample <samplet@ngyro.com>
;;; Copyright © 2018 Arun Isaac <arunisaac@systemreboot.net>
;;;
;;; This file is part of GNU Guix.
;;;
@ -3380,7 +3381,7 @@ (define-public ghc-syb
(define-public ghc-fgl
(package
(name "ghc-fgl")
(version "5.5.3.0")
(version "5.6.0.0")
(outputs '("out" "doc"))
(source
(origin
@ -3391,10 +3392,11 @@ (define-public ghc-fgl
".tar.gz"))
(sha256
(base32
"0fbyb6jxy9whgrv6dgnkzz70cmy98arx3q2gnkhgl4a3d7idh36p"))))
"1i6cp4b3w7sjk7y1dq3fh6bci2sm5h3lnbbaw9ln19nwncg2wwll"))))
(build-system haskell-build-system)
(arguments
`(#:configure-flags (list "--allow-newer=QuickCheck")))
`(#:configure-flags (list "--allow-newer=QuickCheck"
"--allow-newer=hspec")))
(inputs
`(("ghc-mtl" ,ghc-mtl)
("ghc-hspec" ,ghc-hspec)