2019-06-16 11:14:08 +01:00
|
|
|
{ docbook_xml_dtd_412, fetchurl, stdenv, perl, python2, zip, xmlto, zlib, fetchpatch }:
|
2009-07-31 11:24:02 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "zziplib";
|
2018-03-30 16:05:41 +01:00
|
|
|
version = "0.13.69";
|
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";
|
2018-03-30 16:05:41 +01:00
|
|
|
sha256 = "0i052a7shww0fzsxrdp3rd7g4mbzx7324a8ysbc0br7frpblcql4";
|
2009-07-31 11:24:02 +01:00
|
|
|
};
|
|
|
|
|
2019-06-16 11:14:08 +01:00
|
|
|
patches = [
|
|
|
|
(fetchpatch {
|
|
|
|
name = "CVE-2018-17828.patch";
|
|
|
|
url = "https://github.com/gdraheim/zziplib/commit/f609ae8971f3c0ce6.diff";
|
|
|
|
sha256 = "0jhiz4fgr93wzh6q03avn95b2nsf6402jaki6hxirxyhs5v9ahry";
|
|
|
|
})
|
2019-10-07 02:29:38 +01:00
|
|
|
|
|
|
|
(fetchpatch {
|
|
|
|
name = "CVE-2018-16548-part1.patch";
|
|
|
|
url = "https://github.com/gdraheim/zziplib/commit/9411bde3e4a70a81ff3ffd256b71927b2d90dcbb.patch";
|
|
|
|
sha256 = "0cy8i182zbvcqzs5z2j13d5sl7hbh59pkgw4xkyg5yz739q4fp9b";
|
|
|
|
})
|
|
|
|
(fetchpatch {
|
|
|
|
name = "CVE-2018-16548-part2.patch";
|
|
|
|
url = "https://github.com/gdraheim/zziplib/commit/d2e5d5c53212e54a97ad64b793a4389193fec687.patch";
|
|
|
|
sha256 = "153wd4vab8xqj9avcpx8g2zw9qsp9nkaqi7yc65pz3r7xfcxwdla";
|
|
|
|
})
|
|
|
|
(fetchpatch {
|
|
|
|
name = "CVE-2018-16548-part3.patch";
|
|
|
|
url = "https://github.com/gdraheim/zziplib/commit/0e1dadb05c1473b9df2d7b8f298dab801778ef99.patch";
|
|
|
|
sha256 = "0fs6dns8l7dz5a900397g8b7x62z72b0pbpdmwk1hnx6vb7z5rz5";
|
|
|
|
})
|
2019-06-16 11:14:08 +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
|
|
|
|
'';
|
|
|
|
|
2018-02-23 20:10:27 +00:00
|
|
|
buildInputs = [ docbook_xml_dtd_412 perl python2 zip xmlto zlib ];
|
2009-07-31 11:24:02 +01:00
|
|
|
|
2018-02-23 20:11:05 +00:00
|
|
|
# tests are broken (https://github.com/gdraheim/zziplib/issues/20),
|
|
|
|
# and test/zziptests.py requires network access
|
|
|
|
# (https://github.com/gdraheim/zziplib/issues/24)
|
|
|
|
doCheck = false;
|
2009-07-31 11:24:02 +01:00
|
|
|
|
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
|
|
|
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://zziplib.sourceforge.net/";
|
2009-07-31 11:24:02 +01:00
|
|
|
|
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
|
|
|
};
|
|
|
|
}
|