[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
20/49: gnu: Add ghc-conduit.
From: |
Ricardo Wurmus |
Subject: |
20/49: gnu: Add ghc-conduit. |
Date: |
Thu, 10 Dec 2015 13:36:44 +0000 |
rekado pushed a commit to branch master
in repository guix.
commit b55630a3a81f3d941f47ddb0a4b50cab60123b58
Author: Ricardo Wurmus <address@hidden>
Date: Fri Nov 27 13:29:17 2015 +0100
gnu: Add ghc-conduit.
* gnu/packages/haskell.scm (ghc-conduit): New variable.
---
gnu/packages/haskell.scm | 34 ++++++++++++++++++++++++++++++++++
1 files changed, 34 insertions(+), 0 deletions(-)
diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm
index 65cc954..f297a89 100644
--- a/gnu/packages/haskell.scm
+++ b/gnu/packages/haskell.scm
@@ -5390,6 +5390,40 @@ the function @code{aesonQQ} that compile-time converts a
string representation
of a JSON value into a @code{Data.Aeson.Value}.")
(license expat)))
+(define-public ghc-conduit
+ (package
+ (name "ghc-conduit")
+ (version "1.2.5.1")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append "http://hackage.haskell.org/package/"
+ "conduit/conduit-" version ".tar.gz"))
+ (sha256
+ (base32
+ "0aq6wswd5dkhdmy7sjhd99mldpq33dqpgbdcwpm94ahvckqxs7v5"))))
+ (build-system haskell-build-system)
+ (propagated-inputs
+ `(("ghc-exceptions" ,ghc-exceptions)
+ ("ghc-lifted-base" ,ghc-lifted-base)
+ ("ghc-mmorph" ,ghc-mmorph)
+ ("ghc-mtl" ,ghc-mtl)
+ ("ghc-resourcet" ,ghc-resourcet)
+ ("ghc-transformers-base" ,ghc-transformers-base)
+ ("ghc-void" ,ghc-void)))
+ (native-inputs
+ `(("ghc-quickcheck" ,ghc-quickcheck)
+ ("ghc-hspec" ,ghc-hspec)
+ ("ghc-safe" ,ghc-safe)))
+ (home-page "https://github.com/snoyberg/conduit")
+ (synopsis "Streaming data library ")
+ (description
+ "conduit is a solution to the streaming data problem, allowing for
+production, transformation, and consumption of streams of data in constant
+memory. It is an alternative to lazy I/O which guarantees deterministic
+resource handling, and fits in the same general solution space as
+enumerator/iteratee and pipes." )
+ (license expat)))
+
(define-public idris
(package
(name "idris")
- 13/49: gnu: Add ghc-th-lift., (continued)
- 13/49: gnu: Add ghc-th-lift., Ricardo Wurmus, 2015/12/10
- 03/49: gnu: Add ghc-deepseq-generics., Ricardo Wurmus, 2015/12/10
- 14/49: gnu: Add ghc-th-expand-syns., Ricardo Wurmus, 2015/12/10
- 08/49: gnu: Add ghc-highlighting-kate., Ricardo Wurmus, 2015/12/10
- 09/49: gnu: Add ghc-cmark., Ricardo Wurmus, 2015/12/10
- 15/49: gnu: Add ghc-th-reify-many., Ricardo Wurmus, 2015/12/10
- 06/49: gnu: Add ghc-regex-pcre-builtin., Ricardo Wurmus, 2015/12/10
- 21/49: gnu: Add ghc-logging-facade., Ricardo Wurmus, 2015/12/10
- 16/49: gnu: Add ghc-th-orphans., Ricardo Wurmus, 2015/12/10
- 18/49: gnu: Add ghc-aeson-qq., Ricardo Wurmus, 2015/12/10
- 20/49: gnu: Add ghc-conduit.,
Ricardo Wurmus <=
- 22/49: gnu: Add ghc-mockery., Ricardo Wurmus, 2015/12/10
- 11/49: gnu: Add ghc-enclosed-exceptions., Ricardo Wurmus, 2015/12/10
- 19/49: gnu: Add ghc-hspec-contrib., Ricardo Wurmus, 2015/12/10
- 23/49: gnu: Add ghc-yaml., Ricardo Wurmus, 2015/12/10
- 24/49: gnu: Add ghc-filemanip., Ricardo Wurmus, 2015/12/10
- 17/49: gnu: Add ghc-haskell-src-meta., Ricardo Wurmus, 2015/12/10
- 25/49: gnu: Add ghc-mmap., Ricardo Wurmus, 2015/12/10
- 29/49: gnu: Add ghc-mime-types., Ricardo Wurmus, 2015/12/10
- 31/49: gnu: Add ghc-byteable., Ricardo Wurmus, 2015/12/10
- 32/49: gnu: Add ghc-hourglass., Ricardo Wurmus, 2015/12/10