13 stdenv.mkDerivation rec {
17 src = fetchFromGitHub {
21 hash = "sha256-MjqGHzb+dsAq2PrcBhU3sv4eMX3afkgFWUbhDp+5o/s=";
36 # test/zziptests.py requires network access
37 # (https://github.com/gdraheim/zziplib/issues/24)
40 "-DBUILD_SHARED_LIBS=True"
41 "-DBUILD_STATIC_LIBS=False"
43 "-DMSVC_STATIC_RUNTIME=OFF"
51 homepage = "https://github.com/gdraheim/zziplib";
52 changelog = "https://github.com/gdraheim/zziplib/blob/${version}/ChangeLog";
53 description = "Library to extract data from files archived in a zip file";
55 The zziplib library is intentionally lightweight, it offers the ability to
56 easily extract data from files archived in a single zip file.
57 Applications can bundle files into a single zip archive and access them.
58 The implementation is based only on the (free) subset of compression with
59 the zlib algorithm which is actually used by the zip/unzip tools.
61 license = with licenses; [ lgpl2Plus mpl11 ];
62 maintainers = with maintainers; [ AndersonTorres ];
63 platforms = platforms.unix;