Skip to content
Snippets Groups Projects
Commit a39f3936 authored by Federico Beffa's avatar Federico Beffa
Browse files

gnu: Add ghc-stm.

* gnu/packages/haskell.scm (ghc-stm): New variable.
parent 3d3613d5
No related branches found
No related tags found
No related merge requests found
......@@ -306,4 +306,26 @@ (define-public ghc-zlib
access to the full zlib feature set.")
(license bsd-3)))
(define-public ghc-stm
(package
(name "ghc-stm")
(version "2.4.4")
(outputs '("out" "doc"))
(source
(origin
(method url-fetch)
(uri (string-append
"http://hackage.haskell.org/package/stm/stm-"
version
".tar.gz"))
(sha256
(base32
"0gc8zvdijp3rwmidkpxv76b4i0dc8dw6nbd92rxl4vxl0655iysx"))))
(build-system haskell-build-system)
(home-page "http://hackage.haskell.org/package/stm")
(synopsis "Software Transactional Memory")
(description
"A modular composable concurrency abstraction.")
(license bsd-3)))
;;; haskell.scm ends here
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment