aboutsummaryrefslogtreecommitdiff
path: root/pkgs/tools/networking/kea
diff options
context:
space:
mode:
authorFranz Pletz <fpletz@fnordicwalking.de>2016-10-24 20:01:42 +0200
committerFranz Pletz <fpletz@fnordicwalking.de>2016-10-24 20:02:23 +0200
commitffca975de7cbb1eeb9a75261479cbfa2c54ccead (patch)
tree34fb548a2af19aee92109d789a7a591c6af37f56 /pkgs/tools/networking/kea
parentbca2fd9f58b3cfede9a96da5dbd471f5afb3ee67 (diff)
kea: init at 1.1.0
Diffstat (limited to 'pkgs/tools/networking/kea')
-rw-r--r--pkgs/tools/networking/kea/default.nix50
-rw-r--r--pkgs/tools/networking/kea/dont-create-var.patch28
2 files changed, 78 insertions, 0 deletions
diff --git a/pkgs/tools/networking/kea/default.nix b/pkgs/tools/networking/kea/default.nix
new file mode 100644
index 000000000000..ca1846edb04e
--- /dev/null
+++ b/pkgs/tools/networking/kea/default.nix
@@ -0,0 +1,50 @@
+{ stdenv, fetchurl, autoreconfHook, pkgconfig, openssl, botan, log4cplus
+, boost, python3, postgresql, mysql, gmp, bzip2 }:
+
+stdenv.mkDerivation rec {
+ name = "${pname}-${version}";
+ pname = "kea";
+ version = "1.1.0";
+
+ src = fetchurl {
+ url = "https://ftp.isc.org/isc/${pname}/${version}/${name}.tar.gz";
+ sha256 = "0b9w71d7pfgr0asqpffh9h935xpvwabyfdvdzqzna6da9zp7mnf3";
+ };
+
+ patches = [ ./dont-create-var.patch ];
+
+ postPatch = ''
+ substituteInPlace ./src/bin/keactrl/Makefile.am '@sysconfdir@' "$out/etc"
+ substituteInPlace ./src/bin/keactrl/Makefile.am '@(sysconfdir)@' "$out/etc"
+ '';
+
+ configureFlags = [
+ "--localstatedir=/var"
+ "--with-botan-config=${botan}/bin/botan-config-1.10"
+ "--with-dhcp-pgsql=${postgresql}/bin/pg_config"
+ "--with-dhcp-mysql=${mysql.client.dev}/bin/mysql_config"
+ ];
+
+ nativeBuildInputs = [ autoreconfHook pkgconfig ];
+ buildInputs = [
+ openssl log4cplus boost python3 mysql.client
+ botan gmp bzip2
+ ];
+
+ 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 ];
+ };
+}
diff --git a/pkgs/tools/networking/kea/dont-create-var.patch b/pkgs/tools/networking/kea/dont-create-var.patch
new file mode 100644
index 000000000000..595942673c68
--- /dev/null
+++ b/pkgs/tools/networking/kea/dont-create-var.patch
@@ -0,0 +1,28 @@
+diff --git a/Makefile.am b/Makefile.am
+index 897be34..b146729 100644
+--- a/Makefile.am
++++ b/Makefile.am
+@@ -103,11 +103,6 @@ cppcheck:
+ --template '{file}:{line}: check_fail: {message} ({severity},{id})' \
+ src
+
+-# These steps are necessary during installation
+-install-exec-hook:
+- mkdir -p $(DESTDIR)${localstatedir}/log/
+- mkdir -p $(DESTDIR)${localstatedir}/run/${PACKAGE_NAME}
+-
+ EXTRA_DIST = tools/path_replacer.sh
+ EXTRA_DIST += tools/mk_cfgrpt.sh
+
+diff --git a/src/lib/dhcpsrv/Makefile.am b/src/lib/dhcpsrv/Makefile.am
+index 066b410..16d3135 100755
+--- a/src/lib/dhcpsrv/Makefile.am
++++ b/src/lib/dhcpsrv/Makefile.am
+@@ -210,7 +210,3 @@ EXTRA_DIST += database_backends.dox libdhcpsrv.dox
+ # Specification file
+ EXTRA_DIST += logging.spec
+
+-install-data-local:
+- $(mkinstalldirs) $(DESTDIR)$(dhcp_data_dir)
+-
+-