[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
33/39: gnu: Add ghc-foldl.
From: |
Ludovic Courtès |
Subject: |
33/39: gnu: Add ghc-foldl. |
Date: |
Sun, 22 Oct 2017 18:32:45 -0400 (EDT) |
civodul pushed a commit to branch master
in repository guix.
commit f6094850d0893ad27a513a0381028ce1f5fb93c7
Author: rsiddharth <address@hidden>
Date: Wed Oct 18 03:07:53 2017 +0000
gnu: Add ghc-foldl.
* gnu/packages/haskell.scm (ghc-foldl): New variable.
Signed-off-by: Ludovic Courtès <address@hidden>
---
gnu/packages/haskell.scm | 32 ++++++++++++++++++++++++++++++++
1 file changed, 32 insertions(+)
diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm
index 977789d..e966043 100644
--- a/gnu/packages/haskell.scm
+++ b/gnu/packages/haskell.scm
@@ -9932,4 +9932,36 @@ the vector; then you can execute the builder to actually
produce the
vector. ")
(license license:expat)))
+(define-public ghc-foldl
+ (package
+ (name "ghc-foldl")
+ (version "1.3.2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "https://hackage.haskell.org/package/"
+ "foldl-" version "/"
+ "foldl-" version ".tar.gz"))
+ (sha256
+ (base32
+ "1z3xjz4khs2kr3mqkbh7dz4kd6gkdk2r67wjkvrxnmp533aqh90n"))))
+ (build-system haskell-build-system)
+ (inputs `(("ghc-mwc-randam" ,ghc-mwc-random)
+ ("ghc-primitive" ,ghc-primitive)
+ ("ghc-text" ,ghc-text)
+ ("ghc-vector" ,ghc-vector)
+ ("ghc-unordered-containers" ,ghc-unordered-containers)
+ ("ghc-hashable" ,ghc-hashable)
+ ("ghc-contravariant" ,ghc-contravariant)
+ ("ghc-profunctors" ,ghc-profunctors)
+ ("ghc-comonad" ,ghc-comonad)
+ ("ghc-vector-builder" ,ghc-vector-builder)))
+ (home-page "https://github.com/Gabriel439/Haskell-Foldl-Library")
+ (synopsis "Composable, streaming, and efficient left folds for Haskell")
+ (description "This Haskell library provides strict left folds that stream
+in constant memory, and you can combine folds using @code{Applicative} style
+to derive new folds. Derived folds still traverse the container just once
+and are often as efficient as hand-written folds.")
+ (license license:bsd-3)))
+
;;; haskell.scm ends here
- 26/39: gnu: Add ghc-cryptohash-md5., (continued)
- 26/39: gnu: Add ghc-cryptohash-md5., Ludovic Courtès, 2017/10/22
- 17/39: gnu: Add ghc-tuple-th., Ludovic Courtès, 2017/10/22
- 24/39: gnu: Add ghc-pretty-hex., Ludovic Courtès, 2017/10/22
- 28/39: gnu: Add ghc-network-info., Ludovic Courtès, 2017/10/22
- 27/39: gnu: Add ghc-cryptohash-sha1., Ludovic Courtès, 2017/10/22
- 29/39: gnu: Add ghc-uuid-types., Ludovic Courtès, 2017/10/22
- 23/39: gnu: Add ghc-crypto-api-tests., Ludovic Courtès, 2017/10/22
- 36/39: gnu: ghc-conduit: Fix lint error., Ludovic Courtès, 2017/10/22
- 37/39: gnu: Add ghc-conduit-combinators., Ludovic Courtès, 2017/10/22
- 15/39: gnu: Add ghc-chunked-data., Ludovic Courtès, 2017/10/22
- 33/39: gnu: Add ghc-foldl.,
Ludovic Courtès <=
- 34/39: gnu: Add ghc-mono-traversable., Ludovic Courtès, 2017/10/22
- 19/39: gnu: Add ghc-monadrandom., Ludovic Courtès, 2017/10/22
- 16/39: gnu: Add ghc-base-prelude., Ludovic Courtès, 2017/10/22
- 38/39: gnu: Add ghc-aws., Ludovic Courtès, 2017/10/22
- 31/39: gnu: Add ghc-rebase., Ludovic Courtès, 2017/10/22
- 30/39: gnu: Add ghc-uuid., Ludovic Courtès, 2017/10/22
- 39/39: gnu: impressive: Fix Python 2/3 dependency mismatch., Ludovic Courtès, 2017/10/22
- 32/39: gnu: Add ghc-vector-builder., Ludovic Courtès, 2017/10/22