nixpkgs/pkgs/development/libraries/libzip/default.nix
2017-03-12 12:33:04 +01:00

35 lines
918 B
Nix

{ stdenv, fetchurl, perl, zlib }:
stdenv.mkDerivation rec {
name = "libzip-${version}";
version = "1.2.0";
src = fetchurl {
url = "http://www.nih.at/libzip/${name}.tar.gz";
sha256 = "17vxj2ffsxwh8lkc6801ppmwj15jp8q58rin76znxfbx88789ybc";
};
outputs = [ "out" "dev" ];
nativeBuildInputs = [ perl ];
propagatedBuildInputs = [ zlib ];
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
( 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";
platforms = stdenv.lib.platforms.unix;
};
}