gnu: Add ghc-parallel.

* gnu/packages/haskell.scm (ghc-parallel): New variable.
master
Federico Beffa 2015-03-27 15:11:50 +01:00
parent a39f3936a9
commit e916e21102
1 changed files with 22 additions and 0 deletions

View File

@ -328,4 +328,26 @@ access to the full zlib feature set.")
"A modular composable concurrency abstraction.")
(license bsd-3)))
(define-public ghc-parallel
(package
(name "ghc-parallel")
(version "3.2.0.6")
(outputs '("out" "doc"))
(source
(origin
(method url-fetch)
(uri (string-append
"http://hackage.haskell.org/package/parallel/parallel-"
version
".tar.gz"))
(sha256
(base32
"0hp6vf4zxsw6vz6lj505xihmnfhgjp39c9q7nyzlgcmps3xx6a5r"))))
(build-system haskell-build-system)
(home-page "http://hackage.haskell.org/package/parallel")
(synopsis "Parallel programming library")
(description
"This package provides a library for parallel programming.")
(license bsd-3)))
;;; haskell.scm ends here