mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-11 13:49:23 -05:00
gnu: Add ghc-parallel.
* gnu/packages/haskell.scm (ghc-parallel): New variable.
This commit is contained in:
parent
a39f3936a9
commit
e916e21102
1 changed files with 22 additions and 0 deletions
|
@ -328,4 +328,26 @@ (define-public ghc-stm
|
|||
"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
|
||||
|
|
Loading…
Reference in a new issue