mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-17 14:19:58 +03:00
Latest version of libzip places zipconf.h where mysqlworkbench
cannot find it and so mysqlworkbench does not build. This links it to somewhere mysqlworkbench looks. I think the openoffice build also failed because of this. svn path=/nixpkgs/trunk/; revision=32679
This commit is contained in:
parent
207d5aae28
commit
a70a76086c
@ -10,6 +10,12 @@ stdenv.mkDerivation rec {
|
||||
|
||||
propagatedBuildInputs = [ zlib ];
|
||||
|
||||
# At least mysqlWorkbench cannot find zipconf.h; I think also openoffice
|
||||
# had this same problem. This links it somewhere that mysqlworkbench looks.
|
||||
postInstall = ''
|
||||
( cd $out/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";
|
||||
|
Loading…
Reference in New Issue
Block a user