2017-10-24 14:20:00 +02:00
|
|
|
{ stdenv, fetchurl, autoreconfHook, pkgconfig, openssl, botan2, log4cplus
|
2019-09-22 09:38:09 +02:00
|
|
|
, boost, python3, postgresql, libmysqlclient, gmp, bzip2 }:
|
2016-10-24 20:01:42 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "kea";
|
2019-08-29 10:34:36 +02:00
|
|
|
version = "1.5.0-P1";
|
2016-10-24 20:01:42 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 14:41:18 +02:00
|
|
|
url = "https://ftp.isc.org/isc/${pname}/${version}/${pname}-${version}.tar.gz";
|
2019-08-29 10:34:36 +02:00
|
|
|
sha256 = "0bqxzp3f7cmraa5davj2az1hx1gbbchqzlz3ai26c802agzafyhz";
|
2016-10-24 20:01:42 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
patches = [ ./dont-create-var.patch ];
|
|
|
|
|
|
|
|
postPatch = ''
|
2017-08-02 19:05:20 +02:00
|
|
|
substituteInPlace ./src/bin/keactrl/Makefile.am --replace '@sysconfdir@' "$out/etc"
|
|
|
|
substituteInPlace ./src/bin/keactrl/Makefile.am --replace '@(sysconfdir)@' "$out/etc"
|
2016-10-24 20:01:42 +02:00
|
|
|
'';
|
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"--localstatedir=/var"
|
2018-07-15 21:21:09 +02:00
|
|
|
"--with-pgsql=${postgresql}/bin/pg_config"
|
2019-09-22 09:38:09 +02:00
|
|
|
"--with-mysql=${libmysqlclient}/bin/mysql_config"
|
2016-10-24 20:01:42 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
|
|
|
buildInputs = [
|
2019-09-22 09:38:09 +02:00
|
|
|
openssl log4cplus boost python3 libmysqlclient
|
2017-10-24 14:20:00 +02:00
|
|
|
botan2 gmp bzip2
|
2016-10-24 20:01:42 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://kea.isc.org/";
|
2016-10-24 20:01:42 +02:00
|
|
|
description = "High-performance, extensible DHCP server by ISC";
|
|
|
|
longDescription = ''
|
|
|
|
KEA is a new open source DHCPv4/DHCPv6 server being developed by
|
|
|
|
Internet Systems Consortium. The objective of this project is to
|
|
|
|
provide a very high-performance, extensible DHCP server engine for
|
|
|
|
use by enterprises and service providers, either as is or with
|
|
|
|
extensions and modifications.
|
|
|
|
'';
|
|
|
|
license = licenses.mpl20;
|
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = with maintainers; [ fpletz ];
|
|
|
|
};
|
|
|
|
}
|