gnu: ghc-test-framework: Update to 0.8.2.0.
* gnu/packages/haskell.scm (ghc-semigroups-bootstrap, ghc-hashable-bootstrap, ghc-nats-bootstrap, ghc-unordered-containers-bootstrap): New variables for breaking a dependency cycle with ghc-test-framework. * gnu/packages/haskell-check.scm (ghc-test-framework): Update to 0.8.2.0. [arguments]: Add a phase to patch the Cabal file to allow a newer QuickCheck. [inputs]: Add ghc-semigroups-bootstrap.
This commit is contained in:
parent
d9404fc122
commit
bc8bda501c
|
@ -452,7 +452,7 @@ expressed in Haskell, using combinators defined in the QuickCheck library.")
|
||||||
(define-public ghc-test-framework
|
(define-public ghc-test-framework
|
||||||
(package
|
(package
|
||||||
(name "ghc-test-framework")
|
(name "ghc-test-framework")
|
||||||
(version "0.8.1.1")
|
(version "0.8.2.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
|
@ -460,10 +460,17 @@ expressed in Haskell, using combinators defined in the QuickCheck library.")
|
||||||
"test-framework-" version ".tar.gz"))
|
"test-framework-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0wxjgdvb1c4ykazw774zlx86550848wbsvgjgcrdzcgbb9m650vq"))))
|
"1hhacrzam6b8f10hyldmjw8pb7frdxh04rfg3farxcxwbnhwgbpm"))))
|
||||||
(build-system haskell-build-system)
|
(build-system haskell-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:configure-flags (list "--allow-newer=time")))
|
`(#:tests? #f ; FIXME: Tests do not build.
|
||||||
|
#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
(add-before 'configure 'update-constraints
|
||||||
|
(lambda _
|
||||||
|
(substitute* "test-framework.cabal"
|
||||||
|
(("QuickCheck >= 2\\.3 && < 2\\.10")
|
||||||
|
"QuickCheck >= 2.3 && < 2.12")))))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("ghc-hunit" ,ghc-hunit)
|
`(("ghc-hunit" ,ghc-hunit)
|
||||||
("ghc-quickcheck" ,ghc-quickcheck)))
|
("ghc-quickcheck" ,ghc-quickcheck)))
|
||||||
|
@ -475,7 +482,8 @@ expressed in Haskell, using combinators defined in the QuickCheck library.")
|
||||||
("ghc-random" ,ghc-random)
|
("ghc-random" ,ghc-random)
|
||||||
("ghc-regex-posix" ,ghc-regex-posix)
|
("ghc-regex-posix" ,ghc-regex-posix)
|
||||||
("ghc-xml" ,ghc-xml)
|
("ghc-xml" ,ghc-xml)
|
||||||
("ghc-libxml" ,ghc-libxml)))
|
("ghc-libxml" ,ghc-libxml)
|
||||||
|
("ghc-semigroups" ,ghc-semigroups-bootstrap)))
|
||||||
(home-page "https://batterseapower.github.io/test-framework/")
|
(home-page "https://batterseapower.github.io/test-framework/")
|
||||||
(synopsis "Framework for running and organising tests")
|
(synopsis "Framework for running and organising tests")
|
||||||
(description
|
(description
|
||||||
|
|
|
@ -2266,6 +2266,14 @@ data structures. The package provides instances for basic types and a way to
|
||||||
combine hash values.")
|
combine hash values.")
|
||||||
(license license:bsd-3)))
|
(license license:bsd-3)))
|
||||||
|
|
||||||
|
(define-public ghc-hashable-bootstrap
|
||||||
|
(package
|
||||||
|
(inherit ghc-hashable)
|
||||||
|
(name "ghc-hashable-bootstrap")
|
||||||
|
(arguments `(#:tests? #f))
|
||||||
|
(native-inputs '())
|
||||||
|
(properties '((hidden? #t)))))
|
||||||
|
|
||||||
(define-public ghc-hashable-time
|
(define-public ghc-hashable-time
|
||||||
(package
|
(package
|
||||||
(name "ghc-hashable-time")
|
(name "ghc-hashable-time")
|
||||||
|
@ -3580,6 +3588,15 @@ optimized for performance critical use, both in terms of large data quantities
|
||||||
and high speed.")
|
and high speed.")
|
||||||
(license license:bsd-3)))
|
(license license:bsd-3)))
|
||||||
|
|
||||||
|
(define-public ghc-unordered-containers-bootstrap
|
||||||
|
(package
|
||||||
|
(inherit ghc-unordered-containers)
|
||||||
|
(name "ghc-unordered-containers-bootstrap")
|
||||||
|
(arguments `(#:tests? #f))
|
||||||
|
(inputs
|
||||||
|
`(("ghc-hashable" ,ghc-hashable-bootstrap)))
|
||||||
|
(properties '(hidden? #t))))
|
||||||
|
|
||||||
(define-public ghc-uniplate
|
(define-public ghc-uniplate
|
||||||
(package
|
(package
|
||||||
(name "ghc-uniplate")
|
(name "ghc-uniplate")
|
||||||
|
@ -4569,6 +4586,14 @@ Compatibility package for older packages.")
|
||||||
(description "This library provides the natural numbers for Haskell.")
|
(description "This library provides the natural numbers for Haskell.")
|
||||||
(license license:bsd-3)))
|
(license license:bsd-3)))
|
||||||
|
|
||||||
|
(define-public ghc-nats-bootstrap
|
||||||
|
(package
|
||||||
|
(inherit ghc-nats)
|
||||||
|
(name "ghc-nats-bootstrap")
|
||||||
|
(inputs
|
||||||
|
`(("ghc-hashable" ,ghc-hashable-bootstrap)))
|
||||||
|
(properties '((hidden? #t)))))
|
||||||
|
|
||||||
(define-public ghc-void
|
(define-public ghc-void
|
||||||
(package
|
(package
|
||||||
(name "ghc-void")
|
(name "ghc-void")
|
||||||
|
@ -4889,6 +4914,18 @@ where every element did not have to have an inverse, thus the name
|
||||||
semigroup.")
|
semigroup.")
|
||||||
(license license:bsd-3)))
|
(license license:bsd-3)))
|
||||||
|
|
||||||
|
(define-public ghc-semigroups-bootstrap
|
||||||
|
(package
|
||||||
|
(inherit ghc-semigroups)
|
||||||
|
(name "ghc-semigroups-bootstrap")
|
||||||
|
(inputs
|
||||||
|
`(("ghc-nats" ,ghc-nats-bootstrap)
|
||||||
|
("ghc-tagged" ,ghc-tagged)
|
||||||
|
("ghc-unordered-containers" ,ghc-unordered-containers-bootstrap)
|
||||||
|
("ghc-text" ,ghc-text)
|
||||||
|
("ghc-hashable" ,ghc-hashable-bootstrap)))
|
||||||
|
(properties '(hidden? #t))))
|
||||||
|
|
||||||
(define-public ghc-free
|
(define-public ghc-free
|
||||||
(package
|
(package
|
||||||
(name "ghc-free")
|
(name "ghc-free")
|
||||||
|
|
Loading…
Reference in New Issue