libzip: Move directory containing zipconf.h to $dev

http://hydra.nixos.org/build/34979863/nixlog/1/raw
This commit is contained in:
Tuomas Tynkkynen 2016-04-27 03:48:59 +03:00
parent 2c32607650
commit 519dd711fe

View File

@ -21,6 +21,8 @@ stdenv.mkDerivation rec {
# 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 )
'';