gnu: ghc-bifunctors: Update to 5.5.2.

* gnu/packages/haskell.scm (ghc-bifunctors): Update to 5.5.2.
[inputs]: Add ghc-base-orphans, ghc-comonad, ghc-th-abstraction, and
ghc-transformers-compat.
[native-inputs]: Add ghc-hspec, hspec-discover, and ghc-quickcheck.
This commit is contained in:
Ricardo Wurmus 2018-02-12 23:59:46 +01:00
parent aebb8db289
commit 7044882ce7
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -4268,7 +4268,7 @@ (define-public ghc-cheapskate
(define-public ghc-bifunctors
(package
(name "ghc-bifunctors")
(version "5")
(version "5.5.2")
(source
(origin
(method url-fetch)
@ -4278,11 +4278,19 @@ (define-public ghc-bifunctors
".tar.gz"))
(sha256
(base32
"13990xdgx0n23qgi18ghhmsywj5zkr0a5bim0g8a4nzi0cx95ps1"))))
"04fbsysm6zl8kmvqgffmrqa9bxl9dl2gibrd51asqzg737mb4ark"))))
(build-system haskell-build-system)
(inputs
`(("ghc-tagged" ,ghc-tagged)
`(("ghc-base-orphans" ,ghc-base-orphans)
("ghc-comonad" ,ghc-comonad)
("ghc-th-abstraction" ,ghc-th-abstraction)
("ghc-transformers-compat" ,ghc-transformers-compat)
("ghc-tagged" ,ghc-tagged)
("ghc-semigroups" ,ghc-semigroups)))
(native-inputs
`(("ghc-hspec" ,ghc-hspec)
("hspec-discover" ,hspec-discover)
("ghc-quickcheck" ,ghc-quickcheck)))
(home-page "https://github.com/ekmett/bifunctors/")
(synopsis "Bifunctors for Haskell")
(description "This package provides bifunctors for Haskell.")