kea: fix path to mysql_config
This commit is contained in:
parent
b750697c1f
commit
c7d0b34a12
@ -1,6 +1,8 @@
|
|||||||
{ stdenv, fetchurl, autoreconfHook, pkgconfig, openssl, botan2, log4cplus
|
{ stdenv, fetchurl, autoreconfHook, pkgconfig, openssl, botan2, log4cplus
|
||||||
, boost, python3, postgresql, libmysqlclient, gmp, bzip2 }:
|
, boost, python3, postgresql, libmysqlclient, gmp, bzip2 }:
|
||||||
|
|
||||||
|
let inherit (stdenv) lib; in
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "kea";
|
pname = "kea";
|
||||||
version = "1.5.0-P1";
|
version = "1.5.0-P1";
|
||||||
@ -20,7 +22,7 @@ stdenv.mkDerivation rec {
|
|||||||
configureFlags = [
|
configureFlags = [
|
||||||
"--localstatedir=/var"
|
"--localstatedir=/var"
|
||||||
"--with-pgsql=${postgresql}/bin/pg_config"
|
"--with-pgsql=${postgresql}/bin/pg_config"
|
||||||
"--with-mysql=${libmysqlclient}/bin/mysql_config"
|
"--with-mysql=${lib.getDev libmysqlclient}/bin/mysql_config"
|
||||||
];
|
];
|
||||||
|
|
||||||
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
||||||
|
Loading…
x
Reference in New Issue
Block a user