gnu: Add ghc-test-framework-hunit.

* gnu/packages/haskell.scm (ghc-test-framework-hunit): New variable.
This commit is contained in:
Eric Bavier 2015-11-18 18:17:43 -06:00
parent 09655c676b
commit 1fe25c573a

View file

@ -1755,6 +1755,30 @@ (define-public ghc-test-framework
reporting and test statistics output.")
(license bsd-3)))
(define-public ghc-test-framework-hunit
(package
(name "ghc-test-framework-hunit")
(version "0.3.0.1")
(source
(origin
(method url-fetch)
(uri (string-append "http://hackage.haskell.org/package/"
"test-framework-hunit/test-framework-hunit-"
version ".tar.gz"))
(sha256
(base32
"1h0h55kf6ff25nbfx1mhliwyknc0glwv3zi78wpzllbjbs7gvyfk"))))
(build-system haskell-build-system)
(propagated-inputs
`(("ghc-extensible-exceptions" ,ghc-extensible-exceptions)
("ghc-hunit" ,ghc-hunit)
("ghc-test-framework" ,ghc-test-framework)))
(home-page "https://batterseapower.github.io/test-framework/")
(synopsis "HUnit support for test-framework")
(description
"This package provides HUnit support for the test-framework package.")
(license bsd-3)))
(define-public ghc-tf-random
(package
(name "ghc-tf-random")