guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

82/153: gnu: Add ghc-tasty.


From: Paul
Subject: 82/153: gnu: Add ghc-tasty.
Date: Thu, 22 Oct 2015 10:11:26 +0000

toothbrush pushed a commit to branch wip-haskell-platform-7.10.2-a
in repository guix.

commit 79a7419d5145af51d0fb0ca480edbb8ebbcb8881
Author: Paul van der Walt <address@hidden>
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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]