guix-devel
[Top][All Lists]
Advanced

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

[PATCH 057/105] gnu: Add ghc-tasty.


From: Paul van der Walt
Subject: [PATCH 057/105] gnu: Add ghc-tasty.
Date: Thu, 15 Oct 2015 17:28:39 +0200

* gnu/packages/haskell.scm (ghc-tasty): New variable.
---
 gnu/packages/haskell.scm | 35 +++++++++++++++++++++++++++++++++++
 1 file changed, 35 insertions(+)

diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm
index f762b5c..f677edb 100644
--- a/gnu/packages/haskell.scm
+++ b/gnu/packages/haskell.scm
@@ -2872,4 +2872,39 @@ modeled after doctest for
 Python (<http://docs.python.org/library/doctest.html>).")
     (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
-- 
2.6.1




reply via email to

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