gnu: ghc-hunit: Update to 1.6.0.0.
* gnu/packages/haskell-check.scm (ghc-hunit): Update to 1.6.0.0. [inputs]: Add ghc-call-stack-boot.
This commit is contained in:
parent
e42e9024c1
commit
f1ac3bba66
|
@ -603,19 +603,21 @@ using Template Haskell")
|
||||||
(define-public ghc-hunit
|
(define-public ghc-hunit
|
||||||
(package
|
(package
|
||||||
(name "ghc-hunit")
|
(name "ghc-hunit")
|
||||||
(version "1.3.1.2")
|
(version "1.6.0.0")
|
||||||
(outputs '("out" "doc"))
|
(outputs '("out" "doc"))
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append
|
(uri (string-append "https://hackage.haskell.org/package/HUnit/"
|
||||||
"https://hackage.haskell.org/package/HUnit/HUnit-"
|
"HUnit-" version ".tar.gz"))
|
||||||
version
|
|
||||||
".tar.gz"))
|
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"10akdh4fl615rrshxi3m5gf414il1q42z4zqyb6q4jasmscvzpms"))))
|
"1pnhwqq5v8h48gbp3ibv3skfj25mf4zs5svxcavq93p9cswycj3l"))))
|
||||||
(build-system haskell-build-system)
|
(build-system haskell-build-system)
|
||||||
|
(inputs
|
||||||
|
;; We cannot use ghc-call-stack there, because it depends on
|
||||||
|
;; ghc-nanospec, which depends on ghc-hunit.
|
||||||
|
`(("ghc-call-stack" ,ghc-call-stack-boot)))
|
||||||
(home-page "http://hunit.sourceforge.net/")
|
(home-page "http://hunit.sourceforge.net/")
|
||||||
(synopsis "Unit testing framework for Haskell")
|
(synopsis "Unit testing framework for Haskell")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Reference in New Issue