summaryrefslogtreecommitdiff
path: root/gnu/packages/haskell.scm
diff options
context:
space:
mode:
authorPaul van der Walt <paul@denknerd.org>2015-10-22 13:19:56 +0200
committerPaul van der Walt <paul@denknerd.org>2015-10-23 09:10:52 +0200
commitf550db48ebea7d0ce494641ebaf7d33ccd3f40ec (patch)
tree201423e3dfc36bd6e85d0500626b96088bbb186d /gnu/packages/haskell.scm
parent85b2a2f541013d841e05eb12c74285086bae172d (diff)
gnu: Add ghc-streaming-commons.
* gnu/packages/haskell.scm (ghc-streaming-commons): New variable.
Diffstat (limited to 'gnu/packages/haskell.scm')
-rw-r--r--gnu/packages/haskell.scm33
1 files changed, 33 insertions, 0 deletions
diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm
index 3e6db05be15..09ab4aa3498 100644
--- a/gnu/packages/haskell.scm
+++ b/gnu/packages/haskell.scm
@@ -554,6 +554,39 @@ unwanted suggestions, and to add your own custom suggestions.")
554code where you can safely allocate resources.") 554code where you can safely allocate resources.")
555 (license bsd-3))) 555 (license bsd-3)))
556 556
557(define-public ghc-streaming-commons
558 (package
559 (name "ghc-streaming-commons")
560 (version "0.1.14.2")
561 (source
562 (origin
563 (method url-fetch)
564 (uri (string-append
565 "http://hackage.haskell.org/package/streaming-commons/streaming-commons-"
566 version
567 ".tar.gz"))
568 (sha256
569 (base32
570 "12nw9bwvy6zrabkgvbp371klca3ds6qjlfncg1b8pbwx1y7m8c8h"))))
571 (build-system haskell-build-system)
572 (propagated-inputs
573 `(("ghc-random" ,ghc-random)))
574 (inputs
575 `(("ghc-quickcheck" ,ghc-quickcheck)
576 ("ghc-async" ,ghc-async)
577 ("ghc-blaze-builder" ,ghc-blaze-builder)
578 ("ghc-hspec" ,ghc-hspec)
579 ("ghc-stm" ,ghc-stm)
580 ("ghc-text" ,ghc-text)
581 ("ghc-network" ,ghc-network)
582 ("ghc-zlib" ,ghc-zlib)))
583 (home-page "https://hackage.haskell.org/package/streaming-commons")
584 (synopsis "Conduit and pipes needed by some streaming data libraries")
585 (description "Provides low-dependency functionality commonly needed by
586various Haskell streaming data libraries, such as @code{conduit} and
587@code{pipe}s.")
588 (license bsd-3)))
589
557(define-public cpphs 590(define-public cpphs
558 (package 591 (package
559 (name "cpphs") 592 (name "cpphs")