mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add ghc-tasty-hspec.
* gnu/packages/haskell-check.scm (ghc-tasty-hspec): New variable. Signed-off-by: Christopher Baines <mail@cbaines.net>
This commit is contained in:
parent
460e4e42c8
commit
13f7e5a1b7
1 changed files with 33 additions and 0 deletions
|
@ -215,6 +215,39 @@ (define-public ghc-tasty-hedgehog
|
|||
framework}.")
|
||||
(license license:bsd-3)))
|
||||
|
||||
(define-public ghc-tasty-hspec
|
||||
(package
|
||||
(name "ghc-tasty-hspec")
|
||||
(version "1.1.5.1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append
|
||||
"mirror://hackage/package/tasty-hspec/tasty-hspec-"
|
||||
version
|
||||
".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0i9kdzjpk750sa078jj3iyhp72k0177zk7vxl131r6dkyz09x27y"))))
|
||||
(build-system haskell-build-system)
|
||||
(inputs
|
||||
`(("ghc-hspec" ,ghc-hspec)
|
||||
("ghc-hspec-core" ,ghc-hspec-core)
|
||||
("ghc-quickcheck" ,ghc-quickcheck)
|
||||
("ghc-tasty" ,ghc-tasty)
|
||||
("ghc-tasty-smallcheck" ,ghc-tasty-smallcheck)
|
||||
("ghc-tasty-quickcheck" ,ghc-tasty-quickcheck)))
|
||||
(arguments
|
||||
`(#:cabal-revision
|
||||
("4" "1yppwhs2r2rlwrzli9ccv5ldgl95h5p7pqhsr898r3das6daf6sk")))
|
||||
(home-page
|
||||
"https://github.com/mitchellwrosen/tasty-hspec")
|
||||
(synopsis
|
||||
"Hspec support for the Tasty test framework")
|
||||
(description
|
||||
"This package provides a Tasty provider for Hspec test suites.")
|
||||
(license license:bsd-3)))
|
||||
|
||||
(define-public ghc-tasty-hunit
|
||||
(package
|
||||
(name "ghc-tasty-hunit")
|
||||
|
|
Loading…
Reference in a new issue