guix-devel
[Top][All Lists]
Advanced

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

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


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

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

diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm
index 14eeb9a..dceba10 100644
--- a/gnu/packages/haskell.scm
+++ b/gnu/packages/haskell.scm
@@ -2872,6 +2872,37 @@ modeled after doctest for
 Python (<http://docs.python.org/library/doctest.html>).")
     (license expat)))
 
+(define-public ghc-tasty-quickcheck
+  (package
+    (name "ghc-tasty-quickcheck")
+    (version "0.8.4")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append
+             
"http://hackage.haskell.org/package/tasty-quickcheck/tasty-quickcheck-";
+             version
+             ".tar.gz"))
+       (sha256
+        (base32
+         "15rjxib5jmjq0hzj47x15kgp3awc73va4cy1pmpf7k3hvfv4qprn"))))
+    (build-system haskell-build-system)
+    (inputs
+     `(("ghc-tagged" ,ghc-tagged)
+       ("ghc-tasty" ,ghc-tasty)
+       ("ghc-quickcheck" ,ghc-quickcheck)
+       ("ghc-random" ,ghc-random)
+       ("ghc-ansi-terminal" ,ghc-ansi-terminal)
+       ("ghc-tasty-hunit" ,ghc-tasty-hunit)
+       ("ghc-pcre-light" ,ghc-pcre-light)))
+    (home-page
+     "http://documentup.com/feuerbach/tasty";)
+    (synopsis
+     "QuickCheck support for the Tasty test framework")
+    (description
+     "QuickCheck support for the Tasty test framework.")
+    (license expat)))
+
 (define-public ghc-tasty
   (package
     (name "ghc-tasty")
-- 
2.6.1




reply via email to

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