nixpkgs/pkgs/development/libraries/zziplib/default.nix

45 lines
1.4 KiB
Nix
Raw Normal View History

2018-02-23 20:10:27 +00:00
{ docbook_xml_dtd_412, fetchurl, stdenv, perl, python2, zip, xmlto, zlib }:
stdenv.mkDerivation rec {
2017-07-31 23:41:47 +00:00
name = "zziplib-${version}";
version = "0.13.68";
src = fetchurl {
2017-08-12 15:20:09 +00:00
url = "https://github.com/gdraheim/zziplib/archive/v${version}.tar.gz";
sha256 = "0chhl6m02562z6c4hjy568mh11pbq2qngw6g2x924ajr8sdr2q4l";
};
postPatch = ''
sed -i -e s,--export-dynamic,, configure
'';
# TODO: still an issue: https://github.com/gdraheim/zziplib/issues/27
2018-02-23 20:10:27 +00:00
buildInputs = [ docbook_xml_dtd_412 perl python2 zip xmlto zlib ];
# 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;
meta = with stdenv.lib; {
description = "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.
'';
license = with licenses; [ lgpl2Plus mpl11 ];
homepage = http://zziplib.sourceforge.net/;
2013-08-16 21:44:33 +00:00
maintainers = [ ];
2016-10-18 07:04:03 +00:00
platforms = python2.meta.platforms;
};
}