mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
grass: fix mysql_config query
This commit is contained in:
parent
fc8596b203
commit
154f6f1e43
1 changed files with 5 additions and 0 deletions
|
@ -24,6 +24,11 @@ stdenv.mkDerivation rec {
|
|||
# directory
|
||||
patches = [ ./no_symbolic_links.patch ];
|
||||
|
||||
# Correct mysql_config query
|
||||
patchPhase = ''
|
||||
substituteInPlace configure --replace "--libmysqld-libs" "--libs"
|
||||
'';
|
||||
|
||||
configureFlags = [
|
||||
"--with-proj-share=${proj}/share/proj"
|
||||
"--with-proj-includes=${proj.dev}/include"
|
||||
|
|
Loading…
Reference in a new issue