gnu: Add ghc-mockery.
* gnu/packages/haskell.scm (ghc-mockery): New variable.
This commit is contained in:
parent
1c17529fd5
commit
9efdbb72af
|
@ -5446,6 +5446,29 @@ enumerator/iteratee and pipes." )
|
||||||
back-ends.")
|
back-ends.")
|
||||||
(license expat)))
|
(license expat)))
|
||||||
|
|
||||||
|
(define-public ghc-mockery
|
||||||
|
(package
|
||||||
|
(name "ghc-mockery")
|
||||||
|
(version "0.3.2")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append "http://hackage.haskell.org/package/"
|
||||||
|
"mockery/mockery-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0m0lp2z63sgkylz5318j53r5hnrkp705qh7nqbb149ir4gy7g1bg"))))
|
||||||
|
(build-system haskell-build-system)
|
||||||
|
(propagated-inputs
|
||||||
|
`(("ghc-temporary" ,ghc-temporary)
|
||||||
|
("ghc-logging-facade" ,ghc-logging-facade)))
|
||||||
|
(native-inputs
|
||||||
|
`(("ghc-hspec" ,ghc-hspec)))
|
||||||
|
(home-page "http://hackage.haskell.org/package/mockery")
|
||||||
|
(synopsis "Support functions for automated testing")
|
||||||
|
(description
|
||||||
|
"The mockery package provides support functions for automated testing.")
|
||||||
|
(license expat)))
|
||||||
|
|
||||||
(define-public idris
|
(define-public idris
|
||||||
(package
|
(package
|
||||||
(name "idris")
|
(name "idris")
|
||||||
|
|
Loading…
Reference in New Issue