gnu: Add ghc-missingh.

* gnu/packages/haskell.scm (ghc-missingh): New variable.
master
Ricardo Wurmus 2018-08-15 12:15:08 +02:00 committed by Ricardo Wurmus
parent 19395aec69
commit ea6ffd3cea
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 39 additions and 0 deletions

View File

@ -9876,4 +9876,43 @@ disk space usage.")
This package provides an orphan instance.")
(license license:expat)))
(define-public ghc-missingh
(package
(name "ghc-missingh")
(version "1.4.0.1")
(source
(origin
(method url-fetch)
(uri (string-append "https://hackage.haskell.org/package/MissingH/"
"MissingH-" version ".tar.gz"))
(sha256
(base32
"0wcvgrmav480w7nf4bl14yi0jq2yzanysxwzwas9hpb28vyjlgr8"))))
(build-system haskell-build-system)
;; Tests require the unmaintained testpack package, which depends on the
;; outdated QuickCheck version 2.7, which can no longer be built with
;; recent versions of GHC and Haskell libraries.
(arguments '(#:tests? #f))
(inputs
`(("ghc-network" ,ghc-network)
("ghc-parsec" ,ghc-parsec)
("ghc-mtl" ,ghc-mtl)
("ghc-hunit" ,ghc-hunit)
("ghc-regex-compat" ,ghc-regex-compat)
("ghc-hslogger" ,ghc-hslogger)
("ghc-random" ,ghc-random)
("ghc-old-time" ,ghc-old-time)
("ghc-old-locale" ,ghc-old-locale)))
(native-inputs
`(("ghc-errorcall-eq-instance" ,ghc-errorcall-eq-instance)
("ghc-quickcheck" ,ghc-quickcheck)
("ghc-hunit" ,ghc-hunit)))
(home-page "http://software.complete.org/missingh")
(synopsis "Large utility library")
(description
"MissingH is a library of all sorts of utility functions for Haskell
programmers. It is written in pure Haskell and thus should be extremely
portable and easy to use.")
(license license:bsd-3)))
;;; haskell.scm ends here