* gnu/packages/haskell.scm (ghc-tasty-th): New variable. --- gnu/packages/haskell.scm | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+)
diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm index bf2755b..f66baf0 100644 --- a/gnu/packages/haskell.scm +++ b/gnu/packages/haskell.scm @@ -2598,6 +2598,34 @@ properties for all test cases up to some depth. The test cases are generated automatically by SmallCheck.") (license bsd-3))) +(define-public ghc-tasty-th + (package + (name "ghc-tasty-th") + (version "0.1.3") + (source + (origin + (method url-fetch) + (uri (string-append + "http://hackage.haskell.org/package/tasty-th/tasty-th-" + version + ".tar.gz")) + (sha256 + (base32 + "1fl5pagm9bdqvp7v54ilkr91m667rxw1jifwfdhrikr938aqrzx3")))) + (build-system haskell-build-system) + (propagated-inputs + `(("ghc-language-haskell-extract" ,ghc-language-haskell-extract))) + (inputs + `(("ghc-tasty" ,ghc-tasty))) + (home-page "http://github.com/bennofs/tasty-th") + (synopsis "Automagically generate test code for Haskell") + (description + "This library provides functions for automatic generation of HUnit and +QuickCheck test code, using Template Haskell. It is a fork of +@code{test-framework-th}, modified to use the @code{tasty} library, instead of +@code{test-framework}.") + (license bsd-3))) + (define-public ghc-tasty-ant-xml (package (name "ghc-tasty-ant-xml") -- 2.6.2