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

35 lines
918 B
Nix
Raw Normal View History

2016-04-27 00:46:36 +00:00
{ stdenv, fetchurl, perl, zlib }:
stdenv.mkDerivation rec {
2016-04-27 00:46:36 +00:00
name = "libzip-${version}";
version = "1.1.2";
src = fetchurl {
url = "http://www.nih.at/libzip/${name}.tar.gz";
2016-04-27 00:46:36 +00:00
sha256 = "08b26qbfxq6z5xf36y1d8insm5valv83dhj933iag6man04prb2r";
};
outputs = [ "out" "dev" ];
2016-04-25 11:51:29 +00:00
2016-04-27 00:46:36 +00:00
nativeBuildInputs = [ perl ];
propagatedBuildInputs = [ zlib ];
2016-04-27 00:46:36 +00:00
preInstall = ''
patchShebangs man/handle_links
'';
# At least mysqlWorkbench cannot find zipconf.h; I think also openoffice
# had this same problem. This links it somewhere that mysqlworkbench looks.
postInstall = ''
mkdir -p $dev/lib
mv $out/lib/libzip $dev/lib/libzip
2016-04-25 11:51:29 +00:00
( cd $dev/include ; ln -s ../lib/libzip/include/zipconf.h zipconf.h )
'';
meta = {
homepage = http://www.nih.at/libzip;
description = "A C library for reading, creating and modifying zip archives";
2016-04-27 01:10:54 +00:00
platforms = stdenv.lib.platforms.unix;
};
}