2017-11-13 11:44:40 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, gnutls, liburcu, lmdb, libcap_ng, libidn
|
2017-08-16 06:24:05 +00:00
|
|
|
, systemd, nettle, libedit, zlib, libiconv, libintlOrEmpty
|
2017-01-30 10:55:15 +00:00
|
|
|
}:
|
2016-07-01 11:44:07 +00:00
|
|
|
|
2017-02-09 01:52:13 +00:00
|
|
|
let inherit (stdenv.lib) optional optionals; in
|
2017-02-13 23:47:01 +00:00
|
|
|
|
2016-07-01 11:44:07 +00:00
|
|
|
# Note: ATM only the libraries have been tested in nixpkgs.
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "knot-dns-${version}";
|
2018-02-12 16:08:51 +00:00
|
|
|
version = "2.6.5";
|
2016-07-01 11:44:07 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://secure.nic.cz/files/knot-dns/knot-${version}.tar.xz";
|
2018-02-12 16:08:51 +00:00
|
|
|
sha256 = "33cd676706e2baeb37cf3879ccbc91a1e1cd1ee5d7a082adff4d1e753ce49d46";
|
2016-07-01 11:44:07 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
outputs = [ "bin" "out" "dev" ];
|
|
|
|
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [
|
2017-11-13 11:44:40 +00:00
|
|
|
gnutls liburcu libidn
|
2017-01-25 21:41:07 +00:00
|
|
|
nettle libedit
|
2017-09-23 12:14:13 +00:00
|
|
|
libiconv lmdb
|
2016-07-01 11:44:07 +00:00
|
|
|
# without sphinx &al. for developer documentation
|
2017-01-25 21:41:07 +00:00
|
|
|
]
|
2017-09-23 12:14:13 +00:00
|
|
|
++ optionals stdenv.isLinux [ libcap_ng systemd ]
|
2017-08-16 06:24:05 +00:00
|
|
|
++ libintlOrEmpty
|
2017-02-13 23:47:01 +00:00
|
|
|
++ optional stdenv.isDarwin zlib; # perhaps due to gnutls
|
2016-07-01 11:44:07 +00:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2017-01-31 11:53:24 +00:00
|
|
|
CFLAGS = [ "-O2" "-DNDEBUG" ];
|
2016-07-01 11:44:07 +00:00
|
|
|
|
|
|
|
#doCheck = true; problems in combination with dynamic linking
|
|
|
|
|
|
|
|
postInstall = ''rm -r "$out"/var'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Authoritative-only DNS server from .cz domain registry";
|
|
|
|
homepage = https://knot-dns.cz;
|
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = [ maintainers.vcunat ];
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|