about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorFranz Pletz <fpletz@fnordicwalking.de>2017-10-24 14:20:00 +0200
committerFranz Pletz <fpletz@fnordicwalking.de>2017-10-24 14:21:08 +0200
commita502a95616b6704cc73d05a63f0f2f8596de7991 (patch)
tree39c24cbb7b6ef1d5e416ca30cf274aa8aae96b27 /pkgs
parentd72ae07c24bbeaccb0b959f539dafdd39bfad60b (diff)
downloadnixlib-a502a95616b6704cc73d05a63f0f2f8596de7991.tar
nixlib-a502a95616b6704cc73d05a63f0f2f8596de7991.tar.gz
nixlib-a502a95616b6704cc73d05a63f0f2f8596de7991.tar.bz2
nixlib-a502a95616b6704cc73d05a63f0f2f8596de7991.tar.lz
nixlib-a502a95616b6704cc73d05a63f0f2f8596de7991.tar.xz
nixlib-a502a95616b6704cc73d05a63f0f2f8596de7991.tar.zst
nixlib-a502a95616b6704cc73d05a63f0f2f8596de7991.zip
kea: build with botan2
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/tools/networking/kea/default.nix5
1 files changed, 2 insertions, 3 deletions
diff --git a/pkgs/tools/networking/kea/default.nix b/pkgs/tools/networking/kea/default.nix
index e1829bcaf7d8..68fb72ff7d9e 100644
--- a/pkgs/tools/networking/kea/default.nix
+++ b/pkgs/tools/networking/kea/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, autoreconfHook, pkgconfig, openssl, botan, log4cplus
+{ stdenv, fetchurl, autoreconfHook, pkgconfig, openssl, botan2, log4cplus
 , boost, python3, postgresql, mysql, gmp, bzip2 }:
 
 stdenv.mkDerivation rec {
@@ -20,7 +20,6 @@ stdenv.mkDerivation rec {
 
   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"
   ];
@@ -28,7 +27,7 @@ stdenv.mkDerivation rec {
   nativeBuildInputs = [ autoreconfHook pkgconfig ];
   buildInputs = [
     openssl log4cplus boost python3 mysql.client
-    botan gmp bzip2
+    botan2 gmp bzip2
   ];
 
   enableParallelBuilding = true;