guix-devel
[Top][All Lists]
Advanced

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

[PATCH 05/21] gnu: Add ghc-tasty-th.


From: Paul van der Walt
Subject: [PATCH 05/21] gnu: Add ghc-tasty-th.
Date: Wed, 4 Nov 2015 21:00:53 +0100

* 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
address@hidden, modified to use the @code{tasty} library, instead of
address@hidden")
+    (license bsd-3)))
+
 (define-public ghc-tasty-ant-xml
   (package
     (name "ghc-tasty-ant-xml")
-- 
2.6.2




reply via email to

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