mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 14:28:15 -05:00
gnu: hspec-discover: Update to 2.5.5.
* gnu/packages/haskell-check.scm (hspec-discover): Update to 2.5.5. [arguments]: Enable haddock phase. [inputs]: Move ghc-hspec-meta from here... [native-inputs]: ...to here; add ghc-quickcheck.
This commit is contained in:
parent
b9ff25999d
commit
8d04a5c968
1 changed files with 8 additions and 9 deletions
|
@ -626,21 +626,20 @@ (define-public ghc-hunit
|
||||||
(define-public hspec-discover
|
(define-public hspec-discover
|
||||||
(package
|
(package
|
||||||
(name "hspec-discover")
|
(name "hspec-discover")
|
||||||
(version "2.2.4")
|
(version "2.5.5")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append
|
(uri (string-append "https://hackage.haskell.org/package/"
|
||||||
"https://hackage.haskell.org/package/hspec-discover/hspec-discover-"
|
"hspec-discover/hspec-discover-"
|
||||||
version
|
version ".tar.gz"))
|
||||||
".tar.gz"))
|
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1bz7wb8v0bx1amiz4bpj34xq97d1ia29n3f654wcrh6lacydp3dv"))))
|
"04aidzi91ccr9bygmfkjzshz34z9vh8wvqj4zinx2clxq6r7gqfz"))))
|
||||||
(build-system haskell-build-system)
|
(build-system haskell-build-system)
|
||||||
(arguments `(#:haddock? #f)) ; Haddock phase fails because there are no
|
(native-inputs
|
||||||
; documentation files.
|
`(("ghc-quickcheck" ,ghc-quickcheck)
|
||||||
(inputs `(("ghc-hspec-meta" ,ghc-hspec-meta)))
|
("ghc-hspec-meta" ,ghc-hspec-meta)))
|
||||||
(home-page "https://hspec.github.io/")
|
(home-page "https://hspec.github.io/")
|
||||||
(synopsis "Automatically discover and run Hspec tests")
|
(synopsis "Automatically discover and run Hspec tests")
|
||||||
(description "hspec-discover is a tool which automatically discovers and
|
(description "hspec-discover is a tool which automatically discovers and
|
||||||
|
|
Loading…
Reference in a new issue