[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
26/27: gnu: Add ghc-threads.
From: |
guix-commits |
Subject: |
26/27: gnu: Add ghc-threads. |
Date: |
Thu, 1 Aug 2019 12:07:14 -0400 (EDT) |
rob pushed a commit to branch wip-haskell-updates
in repository guix.
commit 1ecd20b1407ac43f83668e5cef57854cf9fd53f7
Author: Robert Vollmert <address@hidden>
Date: Mon Jul 15 10:50:15 2019 +0200
gnu: Add ghc-threads.
* gnu/packages/haskell-xyz.scm (ghc-threads): New package.
---
gnu/packages/haskell-xyz.scm | 39 +++++++++++++++++++++++++++++++++++++++
1 file changed, 39 insertions(+)
diff --git a/gnu/packages/haskell-xyz.scm b/gnu/packages/haskell-xyz.scm
index 7763b94..f8a063a 100644
--- a/gnu/packages/haskell-xyz.scm
+++ b/gnu/packages/haskell-xyz.scm
@@ -220,3 +220,42 @@ primitives for I/O using streams.")
pretty printing library. Provides the pretty printing class and
instances for the Prelude types.")
(license license:bsd-3)))
+
+(define-public ghc-threads
+ (package
+ (name "ghc-threads")
+ (version "0.5.1.6")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "https://hackage.haskell.org/package/threads/threads-"
+ version
+ ".tar.gz"))
+ (sha256
+ (base32
+ "0bjnjhnq3km6xqk0fn1fgyz5xdw4h6lylbwwbcmkkfzwcz0c76hk"))))
+ (build-system haskell-build-system)
+ (native-inputs
+ `(("ghc-concurrent-extra" ,ghc-concurrent-extra)
+ ("ghc-hunit" ,ghc-hunit)
+ ("ghc-test-framework" ,ghc-test-framework)
+ ("ghc-test-framework-hunit"
+ ,ghc-test-framework-hunit)))
+ (home-page
+ "https://github.com/basvandijk/threads")
+ (synopsis
+ "Fork threads and wait for their result")
+ (description
+ "This package provides functions to fork threads and wait for their
+result, whether it's an exception or a normal value.
+Besides waiting for the termination of a single thread this packages also
+provides functions to wait for a group of threads to terminate.
+This package is similar to the threadmanager, async and spawn packages.
+The advantages of this package are:
+* Simpler API.
+* More efficient in both space and time.
+* No space-leak when forking a large number of threads.
+* Correct handling of asynchronous exceptions.
+* GHC specific functionality like forkOn and forkIOWithUnmask.")
+ (license license:bsd-3)))
- 20/27: gnu: Add ghc-language-glsl., (continued)
- 20/27: gnu: Add ghc-language-glsl., guix-commits, 2019/08/01
- 21/27: gnu: Add ghc-readable., guix-commits, 2019/08/01
- 04/27: Revert "gnu: ghc-ansi-wl-pprint: Use ghc-ansi-terminal-0.8.", guix-commits, 2019/08/01
- 08/27: gnu: ghc-validation: Downgrade to 1., guix-commits, 2019/08/01
- 10/27: gnu: Remove ghc-haddock-test., guix-commits, 2019/08/01
- 14/27: gnu: Add ghc-snap-core., guix-commits, 2019/08/01
- 13/27: gnu: ghc-trifecta: Disable tests., guix-commits, 2019/08/01
- 17/27: gnu: Add ghc-http-common., guix-commits, 2019/08/01
- 23/27: gnu: Add ghc-zlib-bindings., guix-commits, 2019/08/01
- 24/27: gnu: Add ghc-io-streams., guix-commits, 2019/08/01
- 26/27: gnu: Add ghc-threads.,
guix-commits <=