about summary refs log tree commit diff
path: root/pkgs/development/libraries/zziplib
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2009-07-31 10:24:02 +0000
committerLudovic Courtès <ludo@gnu.org>2009-07-31 10:24:02 +0000
commit937c50442cd0f93a7e428474d30c3142945ad3fb (patch)
tree2b1731e9c63c402c0b3be661d44b2bf352526ecc /pkgs/development/libraries/zziplib
parent4f591cb80327100a1a513ddc9c7251c13df433d1 (diff)
downloadnixlib-937c50442cd0f93a7e428474d30c3142945ad3fb.tar
nixlib-937c50442cd0f93a7e428474d30c3142945ad3fb.tar.gz
nixlib-937c50442cd0f93a7e428474d30c3142945ad3fb.tar.bz2
nixlib-937c50442cd0f93a7e428474d30c3142945ad3fb.tar.lz
nixlib-937c50442cd0f93a7e428474d30c3142945ad3fb.tar.xz
nixlib-937c50442cd0f93a7e428474d30c3142945ad3fb.tar.zst
nixlib-937c50442cd0f93a7e428474d30c3142945ad3fb.zip
Add Zziplib.
svn path=/nixpkgs/trunk/; revision=16528
Diffstat (limited to 'pkgs/development/libraries/zziplib')
-rw-r--r--pkgs/development/libraries/zziplib/default.nix33
1 files changed, 33 insertions, 0 deletions
diff --git a/pkgs/development/libraries/zziplib/default.nix b/pkgs/development/libraries/zziplib/default.nix
new file mode 100644
index 000000000000..744285441e13
--- /dev/null
+++ b/pkgs/development/libraries/zziplib/default.nix
@@ -0,0 +1,33 @@
+{ fetchurl, stdenv, perl, python, zip, xmlto, zlib }:
+
+stdenv.mkDerivation rec {
+  name = "zziplib-0.13.56";
+
+  src = fetchurl {
+    url = "mirror://sourceforge/zziplib/${name}.tar.bz2";
+    sha256 = "0q7yvqzsmp717bh38zhavw3sh27ms6rc84nrqnnnfwmcq6a32sq5";
+  };
+
+  buildInputs = [ perl python zip xmlto zlib ];
+
+  doCheck = true;
+
+  meta = {
+    description = "Zziplib, a library to extract data from files archived in a zip file";
+
+    longDescription = ''
+      The zziplib library is intentionally lightweight, it offers the ability
+      to easily extract data from files archived in a single zip
+      file.  Applications can bundle files into a single zip archive and
+      access them.  The implementation is based only on the (free) subset of
+      compression with the zlib algorithm which is actually used by the
+      zip/unzip tools.
+    '';
+
+    licenses = [ "LGPLv2+" "MPLv1.1" ];
+
+    homepage = http://zziplib.sourceforge.net/;
+
+    maintainers = [ stdenv.lib.maintainers.ludo ];
+  };
+}