[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
10/10: gnu: ghc-unordered-containers: Enable tests.
From: |
Eric Bavier |
Subject: |
10/10: gnu: ghc-unordered-containers: Enable tests. |
Date: |
Thu, 19 Nov 2015 14:08:44 +0000 |
bavier pushed a commit to branch master
in repository guix.
commit c3c61a781c5e8d1b50f744b7f3640156762d5fee
Author: Eric Bavier <address@hidden>
Date: Wed Nov 18 19:12:41 2015 -0600
gnu: ghc-unordered-containers: Enable tests.
* gnu/packages/haskell.scm (ghc-unordered-containers)
[arguments]: Remove.
[inputs]: Add ghc-chasingbottoms, ghc-test-framework,
ghc-test-framework-hunit, and ghc-test-framework-quickcheck2.
---
gnu/packages/haskell.scm | 10 ++++++----
1 files changed, 6 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm
index dc361eb..137f6e9 100644
--- a/gnu/packages/haskell.scm
+++ b/gnu/packages/haskell.scm
@@ -3051,12 +3051,14 @@ Partial and Infinite Values\"}.")
"06l1xv7vhpxly75saxdrbc6p2zlgz1az278arfkz4rgawfnphn3f"))))
(build-system haskell-build-system)
(inputs
- `(("ghc-hunit" ,ghc-hunit)
- ("ghc-quickcheck" ,ghc-quickcheck)))
+ `(("ghc-chasingbottoms" ,ghc-chasingbottoms)
+ ("ghc-hunit" ,ghc-hunit)
+ ("ghc-quickcheck" ,ghc-quickcheck)
+ ("ghc-test-framework" ,ghc-test-framework)
+ ("ghc-test-framework-hunit" ,ghc-test-framework-hunit)
+ ("ghc-test-framework-quickcheck2" ,ghc-test-framework-quickcheck2)))
;; these inputs are necessary to use this library
(propagated-inputs `(("ghc-hashable" ,ghc-hashable)))
- (arguments
- `(#:tests? #f)) ; FIXME: currently missing libraries used for tests.
(home-page
"https://github.com/tibbe/unordered-containers")
(synopsis
- branch master updated (d2a5210 -> c3c61a7), Eric Bavier, 2015/11/19
- 02/10: gnu: Add ghc-libxml., Eric Bavier, 2015/11/19
- 01/10: gnu: Add ghc-hostname., Eric Bavier, 2015/11/19
- 03/10: gnu: Add ghc-test-framework., Eric Bavier, 2015/11/19
- 05/10: gnu: ghc-regex-posix: Propagate inputs., Eric Bavier, 2015/11/19
- 06/10: gnu: ghc-async: Enable tests., Eric Bavier, 2015/11/19
- 08/10: gnu: ghc-attoparsec: Enable tests., Eric Bavier, 2015/11/19
- 07/10: gnu: Add ghc-test-framework-quickcheck2., Eric Bavier, 2015/11/19
- 04/10: gnu: Add ghc-test-framework-hunit., Eric Bavier, 2015/11/19
- 09/10: gnu: Add ghc-chasingbottoms., Eric Bavier, 2015/11/19
- 10/10: gnu: ghc-unordered-containers: Enable tests.,
Eric Bavier <=