guix-commits
[Top][All Lists]
Advanced

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

127/257: gnu: ghc-uuid-types: Relax test framework dependency constraint


From: Ricardo Wurmus
Subject: 127/257: gnu: ghc-uuid-types: Relax test framework dependency constraints.
Date: Thu, 27 Sep 2018 15:47:12 -0400 (EDT)

rekado pushed a commit to branch wip-haskell
in repository guix.

commit 820d957c9a9044da077e676ed6eb9d0960669fc8
Author: Timothy Sample <address@hidden>
Date:   Fri Aug 31 15:18:15 2018 -0400

    gnu: ghc-uuid-types: Relax test framework dependency constraints.
    
    * gnu/packages/haskell.scm (ghc-uuid-types)[arguments]: Remove
    "--allow-newer" configure flags and add a phase that removes dependency
    version constraints from all of the test frameworks.
---
 gnu/packages/haskell.scm | 12 ++++++++++--
 1 file changed, 10 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm
index fdc77c3..a5f1628 100644
--- a/gnu/packages/haskell.scm
+++ b/gnu/packages/haskell.scm
@@ -9034,8 +9034,16 @@ IPv4, IPv6 and MAC addresses.")
          "1zdka5jnm1h6k36w3nr647yf3b5lqb336g3fkprhd6san9x52xlj"))))
     (build-system haskell-build-system)
     (arguments
-     `(#:configure-flags (list "--allow-newer=QuickCheck"
-                               "--allow-newer=HUnit")))
+     `(#:phases
+       (modify-phases %standard-phases
+         (add-before 'configure 'strip-test-framework-constraints
+           (lambda _
+             (substitute* "uuid-types.cabal"
+               (("HUnit >=1\\.2 && < 1\\.4") "HUnit")
+               (("QuickCheck >=2\\.4 && < 2\\.9") "QuickCheck")
+               (("tasty >= 0\\.10 && < 0\\.12") "tasty")
+               (("tasty-hunit == 0\\.9\\.\\*") "tasty-hunit")
+               (("tasty-quickcheck == 0\\.8\\.\\*") "tasty-quickcheck")))))))
     (inputs `(("ghc-hashable" ,ghc-hashable)
               ("ghc-random" ,ghc-random)
               ("ghc-text" ,ghc-text)))



reply via email to

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