diff options
author | Ricardo Wurmus <ricardo.wurmus@mdc-berlin.de> | 2018-08-15 11:28:13 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2018-08-16 17:04:11 +0200 |
commit | d9c36e5b7a96e4688cbefd671e44bf90c0970254 (patch) | |
tree | 8be628f97ecd8d8ba27100fead66d2acfb9eee7d | |
parent | 05916da70bb01db9a3cf5603a208c14a8bfebba9 (diff) | |
download | guix-d9c36e5b7a96e4688cbefd671e44bf90c0970254.tar guix-d9c36e5b7a96e4688cbefd671e44bf90c0970254.tar.gz |
gnu: ghc-uuid-types: Allow building with newer HUnit.
* gnu/packages/haskell.scm (ghc-uuid-types)[arguments]: Allow newer HUnit.
-rw-r--r-- | gnu/packages/haskell.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm index 018ce5348e..63b671f88f 100644 --- a/gnu/packages/haskell.scm +++ b/gnu/packages/haskell.scm @@ -8698,7 +8698,8 @@ IPv4, IPv6 and MAC addresses.") "1zdka5jnm1h6k36w3nr647yf3b5lqb336g3fkprhd6san9x52xlj")))) (build-system haskell-build-system) (arguments - `(#:configure-flags (list "--allow-newer=QuickCheck"))) + `(#:configure-flags (list "--allow-newer=QuickCheck" + "--allow-newer=HUnit"))) (inputs `(("ghc-hashable" ,ghc-hashable) ("ghc-random" ,ghc-random) ("ghc-text" ,ghc-text))) |