2016-04-27 01:46:36 +01:00
|
|
|
{ stdenv, fetchurl, perl, zlib }:
|
2007-11-11 16:19:00 +00:00
|
|
|
|
2012-02-09 14:09:08 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "libzip";
|
2017-11-08 16:32:26 +00:00
|
|
|
version = "1.3.0";
|
2015-04-06 11:11:51 +01:00
|
|
|
|
2009-04-22 00:18:09 +01:00
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "https://www.nih.at/libzip/${pname}-${version}.tar.gz";
|
2017-11-08 16:32:26 +00:00
|
|
|
sha256 = "1633dvjc08zwwhzqhnv62rjf1abx8y5njmm8y16ik9iwd07ka6d9";
|
2009-04-22 00:18:09 +01:00
|
|
|
};
|
2015-04-06 11:11:51 +01:00
|
|
|
|
2018-08-08 19:55:33 +01:00
|
|
|
postPatch = ''
|
|
|
|
patchShebangs test-driver
|
|
|
|
patchShebangs man/handle_links
|
|
|
|
'';
|
|
|
|
|
2016-08-29 01:30:01 +01:00
|
|
|
outputs = [ "out" "dev" ];
|
2016-04-25 12:51:29 +01:00
|
|
|
|
2016-04-27 01:46:36 +01:00
|
|
|
nativeBuildInputs = [ perl ];
|
2012-02-09 14:22:13 +00:00
|
|
|
propagatedBuildInputs = [ zlib ];
|
2007-11-11 16:19:00 +00:00
|
|
|
|
2018-08-08 19:55:33 +01:00
|
|
|
preCheck = ''
|
|
|
|
# regress/runtests is a generated file
|
|
|
|
patchShebangs regress
|
2016-04-27 01:46:36 +01:00
|
|
|
'';
|
|
|
|
|
2012-02-28 16:26:55 +00:00
|
|
|
# At least mysqlWorkbench cannot find zipconf.h; I think also openoffice
|
|
|
|
# had this same problem. This links it somewhere that mysqlworkbench looks.
|
|
|
|
postInstall = ''
|
2016-04-27 01:48:59 +01:00
|
|
|
mkdir -p $dev/lib
|
|
|
|
mv $out/lib/libzip $dev/lib/libzip
|
2016-04-25 12:51:29 +01:00
|
|
|
( cd $dev/include ; ln -s ../lib/libzip/include/zipconf.h zipconf.h )
|
2012-02-28 16:26:55 +00:00
|
|
|
'';
|
|
|
|
|
2018-08-09 10:13:29 +01:00
|
|
|
meta = with stdenv.lib; {
|
2018-01-05 19:42:46 +00:00
|
|
|
homepage = https://www.nih.at/libzip;
|
2009-04-22 00:18:09 +01:00
|
|
|
description = "A C library for reading, creating and modifying zip archives";
|
2018-08-09 10:13:29 +01:00
|
|
|
license = licenses.bsd3;
|
|
|
|
platforms = platforms.unix;
|
2009-04-22 00:18:09 +01:00
|
|
|
};
|
2007-11-11 16:19:00 +00:00
|
|
|
}
|