guix-commits
[Top][All Lists]
Advanced

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

83/153: gnu: Add ghc-tasty-hunit.


From: Paul
Subject: 83/153: gnu: Add ghc-tasty-hunit.
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 f15497892ec0119e96a1c4bfefdef903d73c3516
Author: Paul van der Walt <address@hidden>
Date:   Thu Oct 15 15:02:58 2015 +0200

    gnu: Add ghc-tasty-hunit.
    
    * gnu/packages/haskell.scm (ghc-tasty-hunit): New variable.
---
 gnu/packages/haskell.scm |   22 ++++++++++++++++++++++
 1 files changed, 22 insertions(+), 0 deletions(-)

diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm
index 6a45b04..c85ecfb 100644
--- a/gnu/packages/haskell.scm
+++ b/gnu/packages/haskell.scm
@@ -2854,4 +2854,26 @@ your unit tests, golden tests, QuickCheck/SmallCheck 
properties, and any other
 types of tests into a single test suite.")
     (license expat)))
 
+(define-public ghc-tasty-hunit
+  (package
+    (name "ghc-tasty-hunit")
+    (version "0.9.2")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append
+             "http://hackage.haskell.org/package/tasty-hunit/tasty-hunit-";
+             version
+             ".tar.gz"))
+       (sha256
+        (base32
+         "08qnxaw34wfnzi9irs1jd4d0zczqm3k5ffkd4zwhkz0dflmgq7mf"))))
+    (build-system haskell-build-system)
+    (inputs `(("ghc-tasty" ,ghc-tasty)))
+    (home-page "http://documentup.com/feuerbach/tasty";)
+    (synopsis "HUnit support for the Tasty test framework")
+    (description "This package provides HUnit support for the Tasty Haskell
+test framework.")
+    (license expat)))
+
 ;;; haskell.scm ends here



reply via email to

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