mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
kea: fix path to mysql_config
This commit is contained in:
parent
b750697c1f
commit
c7d0b34a12
1 changed files with 3 additions and 1 deletions
|
@ -1,6 +1,8 @@
|
|||
{ stdenv, fetchurl, autoreconfHook, pkgconfig, openssl, botan2, log4cplus
|
||||
, boost, python3, postgresql, libmysqlclient, gmp, bzip2 }:
|
||||
|
||||
let inherit (stdenv) lib; in
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "kea";
|
||||
version = "1.5.0-P1";
|
||||
|
@ -20,7 +22,7 @@ stdenv.mkDerivation rec {
|
|||
configureFlags = [
|
||||
"--localstatedir=/var"
|
||||
"--with-pgsql=${postgresql}/bin/pg_config"
|
||||
"--with-mysql=${libmysqlclient}/bin/mysql_config"
|
||||
"--with-mysql=${lib.getDev libmysqlclient}/bin/mysql_config"
|
||||
];
|
||||
|
||||
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
||||
|
|
Loading…
Reference in a new issue