diff options
author | Timothy Sample <samplet@ngyro.com> | 2019-11-13 00:27:57 -0500 |
---|---|---|
committer | Timothy Sample <samplet@ngyro.com> | 2019-11-20 20:48:51 -0500 |
commit | f8d1790291895a07c5013060427e93d2723ae1c4 (patch) | |
tree | d14c1a3a2029254ad1861810a41357ccdc425072 /gnu | |
parent | b066ad895d9f3d7c30208825d5f4d3b5bec697cc (diff) | |
download | patches-f8d1790291895a07c5013060427e93d2723ae1c4.tar patches-f8d1790291895a07c5013060427e93d2723ae1c4.tar.gz |
gnu: Add ghc-tar-conduit.
* gnu/packages/haskell-xyz.scm (ghc-tar-conduit): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/haskell-xyz.scm | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/gnu/packages/haskell-xyz.scm b/gnu/packages/haskell-xyz.scm index ac415eaaec..2e5f668a31 100644 --- a/gnu/packages/haskell-xyz.scm +++ b/gnu/packages/haskell-xyz.scm @@ -10697,6 +10697,35 @@ preserved. It also provides features for random access to archive content using an index.") (license license:bsd-3))) +(define-public ghc-tar-conduit + (package + (name "ghc-tar-conduit") + (version "0.3.2") + (source + (origin + (method url-fetch) + (uri (string-append "https://hackage.haskell.org/package/" + "tar-conduit/tar-conduit-" version ".tar.gz")) + (sha256 + (base32 + "0bgn3hyf20g1gfnzy8f41s7nj54kfcyjk2izw99svrw8f3dphi80")))) + (build-system haskell-build-system) + (inputs + `(("ghc-conduit" ,ghc-conduit) + ("ghc-conduit-combinators" ,ghc-conduit-combinators) + ("ghc-safe-exceptions" ,ghc-safe-exceptions))) + (native-inputs + `(("ghc-quickcheck" ,ghc-quickcheck) + ("ghc-conduit-extra" ,ghc-conduit-extra) + ("ghc-hspec" ,ghc-hspec) + ("ghc-hspec" ,ghc-hspec) + ("ghc-weigh" ,ghc-weigh))) + (home-page "https://github.com/snoyberg/tar-conduit#readme") + (synopsis "Extract and create tar files using conduit for streaming") + (description "This library provides a conduit-based, streaming +interface for extracting and creating tar files.") + (license license:expat))) + (define-public ghc-temporary (package (name "ghc-temporary") |