gnu: Add ghc-tasty-ant-xml.
* gnu/packages/haskell.scm (ghc-tasty-ant-xml): New variable.
This commit is contained in:
parent
275ff10bb3
commit
4a2fbdfe62
|
@ -1378,6 +1378,39 @@ properties for all test cases up to some depth. The test cases are generated
|
||||||
automatically by SmallCheck.")
|
automatically by SmallCheck.")
|
||||||
(license bsd-3)))
|
(license bsd-3)))
|
||||||
|
|
||||||
|
(define-public ghc-tasty-ant-xml
|
||||||
|
(package
|
||||||
|
(name "ghc-tasty-ant-xml")
|
||||||
|
(version "1.0.2")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append
|
||||||
|
"http://hackage.haskell.org/package/tasty-ant-xml/tasty-ant-xml-"
|
||||||
|
version
|
||||||
|
".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0pgz2lclg2hp72ykljcbxd88pjanfdfk8m5vb2qzcyjr85kwrhxv"))))
|
||||||
|
(build-system haskell-build-system)
|
||||||
|
(propagated-inputs
|
||||||
|
`(("ghc-generic-deriving" ,ghc-generic-deriving)
|
||||||
|
("ghc-xml" ,ghc-xml)))
|
||||||
|
(inputs
|
||||||
|
`(("ghc-mtl" ,ghc-mtl)
|
||||||
|
("ghc-stm" ,ghc-stm)
|
||||||
|
("ghc-tagged" ,ghc-tagged)
|
||||||
|
("ghc-tasty" ,ghc-tasty)))
|
||||||
|
(home-page
|
||||||
|
"http://github.com/ocharles/tasty-ant-xml")
|
||||||
|
(synopsis
|
||||||
|
"Render tasty output to XML for Jenkins")
|
||||||
|
(description
|
||||||
|
"A tasty ingredient to output test results in XML, using the Ant
|
||||||
|
schema. This XML can be consumed by the Jenkins continuous integration
|
||||||
|
framework.")
|
||||||
|
(license bsd-3)))
|
||||||
|
|
||||||
(define-public ghc-tasty-smallcheck
|
(define-public ghc-tasty-smallcheck
|
||||||
(package
|
(package
|
||||||
(name "ghc-tasty-smallcheck")
|
(name "ghc-tasty-smallcheck")
|
||||||
|
|
Loading…
Reference in New Issue