2016-10-18 08:04:03 +01:00
|
|
|
{ fetchurl, stdenv, perl, python2, zip, xmlto, zlib }:
|
2009-07-31 11:24:02 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2017-08-01 00:41:47 +01:00
|
|
|
name = "zziplib-${version}";
|
2017-08-12 16:20:09 +01:00
|
|
|
version = "0.13.67";
|
2009-07-31 11:24:02 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2017-08-12 16:20:09 +01:00
|
|
|
url = "https://github.com/gdraheim/zziplib/archive/v${version}.tar.gz";
|
|
|
|
sha256 = "0802kdxwxx9zanpwb4w4wfi3blwhv0ri05mzdgd35j5sva5ify0j";
|
2009-07-31 11:24:02 +01:00
|
|
|
};
|
|
|
|
|
2018-02-23 19:36:21 +00:00
|
|
|
postPatch = ''
|
2012-02-26 21:45:08 +00:00
|
|
|
sed -i -e s,--export-dynamic,, configure
|
|
|
|
'';
|
|
|
|
|
2016-10-18 08:04:03 +01:00
|
|
|
buildInputs = [ perl python2 zip xmlto zlib ];
|
2009-07-31 11:24:02 +01:00
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
|
2015-05-27 20:56:04 +01:00
|
|
|
meta = with stdenv.lib; {
|
2014-06-23 12:04:06 +01:00
|
|
|
description = "Library to extract data from files archived in a zip file";
|
2009-07-31 11:24:02 +01:00
|
|
|
|
|
|
|
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.
|
|
|
|
'';
|
|
|
|
|
2015-05-27 20:56:04 +01:00
|
|
|
license = with licenses; [ lgpl2Plus mpl11 ];
|
2009-07-31 11:24:02 +01:00
|
|
|
|
|
|
|
homepage = http://zziplib.sourceforge.net/;
|
|
|
|
|
2013-08-16 22:44:33 +01:00
|
|
|
maintainers = [ ];
|
2016-10-18 08:04:03 +01:00
|
|
|
platforms = python2.meta.platforms;
|
2009-07-31 11:24:02 +01:00
|
|
|
};
|
|
|
|
}
|