[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
13/24: gnu: Add ghc-conduit-algorithms.
From: |
Ricardo Wurmus |
Subject: |
13/24: gnu: Add ghc-conduit-algorithms. |
Date: |
Fri, 5 Oct 2018 17:59:49 -0400 (EDT) |
rekado pushed a commit to branch master
in repository guix.
commit a933cbfb617d84d37e270b4dd89f2de92013834d
Author: Ricardo Wurmus <address@hidden>
Date: Tue Oct 2 18:32:52 2018 +0200
gnu: Add ghc-conduit-algorithms.
* gnu/packages/haskell.scm (ghc-conduit-algorithms): New variable.
---
gnu/packages/haskell.scm | 42 ++++++++++++++++++++++++++++++++++++++++++
1 file changed, 42 insertions(+)
diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm
index 80d331c..befb1ba 100644
--- a/gnu/packages/haskell.scm
+++ b/gnu/packages/haskell.scm
@@ -10929,6 +10929,48 @@ streaming compression and decompression.")
based on a binomial heap.")
(license license:bsd-3)))
+(define-public ghc-conduit-algorithms
+ (package
+ (name "ghc-conduit-algorithms")
+ (version "0.0.8.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "https://hackage.haskell.org/package/"
+ "conduit-algorithms/conduit-algorithms-"
+ version ".tar.gz"))
+ (sha256
+ (base32
+ "07gx2q3d1bbfw14q41rmqg0i4m018pci10lswc0k1ij6lw7sb9fd"))))
+ (build-system haskell-build-system)
+ (inputs
+ `(("ghc-async" ,ghc-async)
+ ("ghc-bzlib-conduit" ,ghc-bzlib-conduit)
+ ("ghc-conduit" ,ghc-conduit)
+ ("ghc-conduit-combinators" ,ghc-conduit-combinators)
+ ("ghc-conduit-extra" ,ghc-conduit-extra)
+ ("ghc-exceptions" ,ghc-exceptions)
+ ("ghc-lzma-conduit" ,ghc-lzma-conduit)
+ ("ghc-monad-control" ,ghc-monad-control)
+ ("ghc-pqueue" ,ghc-pqueue)
+ ("ghc-resourcet" ,ghc-resourcet)
+ ("ghc-stm" ,ghc-stm)
+ ("ghc-stm-conduit" ,ghc-stm-conduit)
+ ("ghc-streaming-commons" ,ghc-streaming-commons)
+ ("ghc-unliftio-core" ,ghc-unliftio-core)
+ ("ghc-vector" ,ghc-vector)))
+ (native-inputs
+ `(("ghc-hunit" ,ghc-hunit)
+ ("ghc-test-framework" ,ghc-test-framework)
+ ("ghc-test-framework-hunit" ,ghc-test-framework-hunit)
+ ("ghc-test-framework-th" ,ghc-test-framework-th)))
+ (home-page "https://github.com/luispedro/conduit-algorithms#readme")
+ (synopsis "Conduit-based algorithms")
+ (description
+ "This package provides algorithms on @code{Conduits}, including higher
+level asynchronous processing and some other utilities.")
+ (license license:expat)))
+
(define-public ghc-weigh
(package
(name "ghc-weigh")
- branch master updated (42384b5 -> d71078b), Ricardo Wurmus, 2018/10/05
- 01/24: gnu: ghc-http-conduit: Remove ghc-http-client from native-inputs., Ricardo Wurmus, 2018/10/05
- 02/24: gnu: ghc-regex: Fix build., Ricardo Wurmus, 2018/10/05
- 03/24: gnu: Add ghc-cairo., Ricardo Wurmus, 2018/10/05
- 08/24: gnu: Add ghc-stm-conduit., Ricardo Wurmus, 2018/10/05
- 09/24: gnu: Add ghc-bindings-dsl., Ricardo Wurmus, 2018/10/05
- 11/24: gnu: Add ghc-bzlib-conduit., Ricardo Wurmus, 2018/10/05
- 10/24: gnu: Add ghc-lzma-conduit., Ricardo Wurmus, 2018/10/05
- 12/24: gnu: Add ghc-pqueue., Ricardo Wurmus, 2018/10/05
- 13/24: gnu: Add ghc-conduit-algorithms.,
Ricardo Wurmus <=
- 20/24: gnu: Add ghc-bytestring-lexing., Ricardo Wurmus, 2018/10/05
- 18/24: gnu: Add ghc-safe-exceptions., Ricardo Wurmus, 2018/10/05
- 23/24: gnu: Add ghc-safeio., Ricardo Wurmus, 2018/10/05
- 04/24: gnu: Add ghc-chart-cairo., Ricardo Wurmus, 2018/10/05
- 05/24: gnu: Add ghc-atomic-write., Ricardo Wurmus, 2018/10/05
- 06/24: gnu: Add ghc-cereal-conduit., Ricardo Wurmus, 2018/10/05
- 07/24: gnu: Add ghc-lzma., Ricardo Wurmus, 2018/10/05
- 16/24: gnu: Add ghc-raw-string-qq., Ricardo Wurmus, 2018/10/05
- 17/24: gnu: Add ghc-inline-c., Ricardo Wurmus, 2018/10/05
- 14/24: gnu: Add ghc-interpolate., Ricardo Wurmus, 2018/10/05