gnu: Add ghc-process.

* gnu/packages/haskell.scm (ghc-process): New variable.

Signed-off-by: Leo Famulari <leo@famulari.name>
This commit is contained in:
ng0 2016-09-18 16:10:01 +00:00 committed by Leo Famulari
parent 4fec5cdbf4
commit 3b281f5b8d
No known key found for this signature in database
GPG key ID: 2646FA30BACA7F08

View file

@ -6930,4 +6930,24 @@ (define-public ghc-directory
files and directories in a portable way.")
(license license:bsd-3)))
(define-public ghc-process
(package
(name "ghc-process")
(version "1.4.2.0")
(source
(origin
(method url-fetch)
(uri (string-append
"https://hackage.haskell.org/package/process/process-"
version ".tar.gz"))
(sha256
(base32
"1v1bav5isqxq9fc4lw714x94qbfsjbm2nn12kjp69r1ql8jaaaqw"))))
(build-system haskell-build-system)
(home-page "http://hackage.haskell.org/package/process")
(synopsis "System process libraries")
(description
"This package contains libraries for dealing with system processes.")
(license license:bsd-3)))
;;; haskell.scm ends here