guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

08/27: gnu: Add ghc-stm.


From: Federico Beffa
Subject: 08/27: gnu: Add ghc-stm.
Date: Wed, 08 Apr 2015 15:31:47 +0000

beffa pushed a commit to branch master
in repository guix.

commit a39f3936a9eea02e4beb38680da42cf0fe37828f
Author: Federico Beffa <address@hidden>
Date:   Fri Mar 27 14:49:39 2015 +0100

    gnu: Add ghc-stm.
    
    * gnu/packages/haskell.scm (ghc-stm): New variable.
---
 gnu/packages/haskell.scm |   22 ++++++++++++++++++++++
 1 files changed, 22 insertions(+), 0 deletions(-)

diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm
index ac55d92..0c86d50 100644
--- a/gnu/packages/haskell.scm
+++ b/gnu/packages/haskell.scm
@@ -306,4 +306,26 @@ most tasks and for the few cases where more control is 
needed it provides
 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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]