mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Add ghc-tasty-hedgehog.
* gnu/packages/haskell-check.scm (ghc-tasty-hedgehog): New variable.
This commit is contained in:
parent
cb71ac3d34
commit
5e2d41f467
1 changed files with 30 additions and 0 deletions
|
@ -184,6 +184,36 @@ you combine your unit tests, golden tests, QuickCheck/SmallCheck properties,
|
||||||
and any other types of tests into a single test suite.")
|
and any other types of tests into a single test suite.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public ghc-tasty-hedgehog
|
||||||
|
(package
|
||||||
|
(name "ghc-tasty-hedgehog")
|
||||||
|
(version "1.0.0.1")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append "https://hackage.haskell.org/package/"
|
||||||
|
"tasty-hedgehog/tasty-hedgehog-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1mbg5q0c0xfrk4npfj60pi693igb7r5l78x6xf9fk2jglw0nmxhz"))))
|
||||||
|
(build-system haskell-build-system)
|
||||||
|
(inputs
|
||||||
|
`(("ghc-tagged" ,ghc-tagged)
|
||||||
|
("ghc-tasty" ,ghc-tasty)
|
||||||
|
("ghc-hedgehog" ,ghc-hedgehog)))
|
||||||
|
(native-inputs
|
||||||
|
`(("ghc-tasty-expected-failure" ,ghc-tasty-expected-failure)))
|
||||||
|
(arguments
|
||||||
|
`(#:cabal-revision
|
||||||
|
("1" "1n6797fm8swyrk8cw7zxz593gq82wx8dayvm204rmgcz75bslcpn")))
|
||||||
|
(home-page "https://github.com/qfpl/tasty-hedgehog")
|
||||||
|
(synopsis "Integration for tasty and hedgehog")
|
||||||
|
(description "This package provides the means for integrating the
|
||||||
|
@url{https://hackage.haskell.org/package/hedgehog, hedgehog testing library}
|
||||||
|
with the @url{https://hackage.haskell.org/package/tasty, tasty testing
|
||||||
|
framework}.")
|
||||||
|
(license license:bsd-3)))
|
||||||
|
|
||||||
(define-public ghc-tasty-hunit
|
(define-public ghc-tasty-hunit
|
||||||
(package
|
(package
|
||||||
(name "ghc-tasty-hunit")
|
(name "ghc-tasty-hunit")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue