toothbrush pushed a commit to branch wip-haskell-platform-7.10.2-a in repository guix.
commit 4e505789194ce84fa2c3416700002540bba5d249 Author: Paul van der Walt <[email protected]> Date: Thu Oct 15 15:01:05 2015 +0200 gnu: Add ghc-tasty. * gnu/packages/haskell.scm (ghc-tasty): New variable. --- gnu/packages/haskell.scm | 35 +++++++++++++++++++++++++++++++++++ 1 files changed, 35 insertions(+), 0 deletions(-) diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm index 810dfb1..6a45b04 100644 --- a/gnu/packages/haskell.scm +++ b/gnu/packages/haskell.scm @@ -2819,4 +2819,39 @@ It is modeled after doctest for Python, see @uref{http://docs.python.org/library/doctest.html, the Doctest website}.") (license expat))) +(define-public ghc-tasty + (package + (name "ghc-tasty") + (version "0.11.0.1") + (source + (origin + (method url-fetch) + (uri (string-append + "http://hackage.haskell.org/package/tasty/tasty-" + version + ".tar.gz")) + (sha256 + (base32 + "1chapivmmwsb1ghwagvdm80bfj3hdk75m94z4p212ng2i4ghpjkx")))) + (build-system haskell-build-system) + (propagated-inputs + `(("ghc-stm" ,ghc-stm) + ("ghc-mtl" ,ghc-mtl) + ("ghc-tagged" ,ghc-tagged) + ("ghc-regex-tdfa-rc" ,ghc-regex-tdfa-rc) + ("ghc-optparse-applicative" ,ghc-optparse-applicative) + ("ghc-unbounded-delays" ,ghc-unbounded-delays) + ("ghc-async" ,ghc-async) + ("ghc-ansi-terminal" ,ghc-ansi-terminal) + ("ghc-clock" ,ghc-clock))) + (home-page + "http://documentup.com/feuerbach/tasty") + (synopsis + "Modern and extensible testing framework") + (description + "Tasty is a modern testing framework for Haskell. It lets you combine +your unit tests, golden tests, QuickCheck/SmallCheck properties, and any other +types of tests into a single test suite.") + (license expat))) + ;;; haskell.scm ends here
