* gnu/packages/haskell.scm (ghc-tasty-hunit): New variable.
---
gnu/packages/haskell.scm | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm
index f677edb..fadfba3 100644
--- a/gnu/packages/haskell.scm
+++ b/gnu/packages/haskell.scm
@@ -2907,4 +2907,28 @@ your unit tests, golden tests, QuickCheck/SmallCheck
properties, and any other
types of tests into a single test suite.")
(license expat)))
+(define-public ghc-tasty-hunit
+ (package
+ (name "ghc-tasty-hunit")
+ (version "0.9.2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "http://hackage.haskell.org/package/tasty-hunit/tasty-hunit-"
+ version
+ ".tar.gz"))
+ (sha256
+ (base32
+ "08qnxaw34wfnzi9irs1jd4d0zczqm3k5ffkd4zwhkz0dflmgq7mf"))))
+ (build-system haskell-build-system)
+ (inputs `(("ghc-tasty" ,ghc-tasty)))
+ (home-page
+ "http://documentup.com/feuerbach/tasty")
+ (synopsis
+ "HUnit support for the Tasty test framework")
+ (description
+ "HUnit support for the Tasty test framework.")
+ (license expat)))
+
;;; haskell.scm ends here
--
2.6.1