2017-10-24 14:20:00 +02:00
|
|
|
{ stdenv, fetchurl, autoreconfHook, pkgconfig, openssl, botan2, log4cplus
|
2016-10-24 20:01:42 +02:00
|
|
|
, boost, python3, postgresql, mysql, gmp, bzip2 }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "${pname}-${version}";
|
|
|
|
pname = "kea";
|
2018-01-28 01:45:16 +01:00
|
|
|
version = "1.3.0";
|
2016-10-24 20:01:42 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://ftp.isc.org/isc/${pname}/${version}/${name}.tar.gz";
|
2018-01-28 01:45:16 +01:00
|
|
|
sha256 = "14f32lsdd1824cx9a4l4pfbhq1d4jik6l6hxd911ihi64nzwvpvf";
|
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"
|
2017-09-27 21:48:39 +02:00
|
|
|
"--with-dhcp-pgsql=${postgresql}/bin/pg_config"
|
2017-12-25 15:21:31 +01:00
|
|
|
"--with-dhcp-mysql=${mysql.connector-c}/bin/mysql_config"
|
2016-10-24 20:01:42 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
|
|
|
buildInputs = [
|
2017-12-25 15:21:31 +01:00
|
|
|
openssl log4cplus boost python3 mysql.connector-c
|
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; {
|
|
|
|
homepage = https://kea.isc.org/;
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|