about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorLuke Clifton <ltclifton@gmail.com>2014-11-27 21:11:36 +0800
committerLuke Clifton <ltclifton@gmail.com>2014-11-27 21:11:36 +0800
commit9e72a00823c30d26440a9579db04217d23ef7d3e (patch)
treecff6b9f6637f85c065b0c5d68542769cd40979d2 /pkgs
parent34ca304f58ffeeb2f4b095c9e41b015e0e99aa18 (diff)
downloadnixlib-9e72a00823c30d26440a9579db04217d23ef7d3e.tar
nixlib-9e72a00823c30d26440a9579db04217d23ef7d3e.tar.gz
nixlib-9e72a00823c30d26440a9579db04217d23ef7d3e.tar.bz2
nixlib-9e72a00823c30d26440a9579db04217d23ef7d3e.tar.lz
nixlib-9e72a00823c30d26440a9579db04217d23ef7d3e.tar.xz
nixlib-9e72a00823c30d26440a9579db04217d23ef7d3e.tar.zst
nixlib-9e72a00823c30d26440a9579db04217d23ef7d3e.zip
Added lzma-conduit package
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/libraries/haskell/lzma-conduit/default.nix24
-rw-r--r--pkgs/top-level/haskell-packages.nix2
2 files changed, 26 insertions, 0 deletions
diff --git a/pkgs/development/libraries/haskell/lzma-conduit/default.nix b/pkgs/development/libraries/haskell/lzma-conduit/default.nix
new file mode 100644
index 000000000000..f93a53c8670f
--- /dev/null
+++ b/pkgs/development/libraries/haskell/lzma-conduit/default.nix
@@ -0,0 +1,24 @@
+# This file was auto-generated by cabal2nix. Please do NOT edit manually!
+
+{ cabal, bindingsDSL, conduit, HUnit, lzma, QuickCheck, resourcet
+, testFramework, testFrameworkHunit, testFrameworkQuickcheck2
+, transformers
+}:
+
+cabal.mkDerivation (self: {
+  pname = "lzma-conduit";
+  version = "1.1.1";
+  sha256 = "1i1khkxpia5hp3f0p7h656yvbgwsxffpl2czxjbkiw6iz31rapwg";
+  buildDepends = [ bindingsDSL conduit resourcet transformers ];
+  testDepends = [
+    conduit HUnit QuickCheck resourcet testFramework testFrameworkHunit
+    testFrameworkQuickcheck2
+  ];
+  extraLibraries = [ lzma ];
+  meta = {
+    homepage = "http://github.com/alphaHeavy/lzma-conduit";
+    description = "Conduit interface for lzma/xz compression";
+    license = self.stdenv.lib.licenses.bsd3;
+    platforms = self.ghc.meta.platforms;
+  };
+})
diff --git a/pkgs/top-level/haskell-packages.nix b/pkgs/top-level/haskell-packages.nix
index c9b47f61bc13..748bb8336438 100644
--- a/pkgs/top-level/haskell-packages.nix
+++ b/pkgs/top-level/haskell-packages.nix
@@ -1576,6 +1576,8 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in
 
   lushtags = callPackage ../development/libraries/haskell/lushtags {};
 
+  lzmaConduit = callPackage ../development/libraries/haskell/lzma-conduit {};
+
   lzmaEnumerator = callPackage ../development/libraries/haskell/lzma-enumerator {};
 
   maccatcher = callPackage ../development/libraries/haskell/maccatcher {};