mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
88 lines
2.6 KiB
Nix
88 lines
2.6 KiB
Nix
{ stdenv, fetchurl, runCommand, pkgconfig, hexdump, which
|
|
, knot-dns, luajit, libuv, lmdb, gnutls, nettle
|
|
, cmocka, systemd, dns-root-data, makeWrapper
|
|
, extraFeatures ? false /* catch-all if defaults aren't enough */
|
|
, luajitPackages
|
|
}:
|
|
let # un-indented, over the whole file
|
|
|
|
result = if extraFeatures then wrapped-full else unwrapped;
|
|
|
|
inherit (stdenv.lib) optional concatStringsSep;
|
|
|
|
unwrapped = stdenv.mkDerivation rec {
|
|
name = "knot-resolver-${version}";
|
|
version = "2.4.1";
|
|
|
|
src = fetchurl {
|
|
url = "https://secure.nic.cz/files/knot-resolver/${name}.tar.xz";
|
|
sha256 = "e8044316cd897ad29b3c5284de06652e1568c4d5861e3147ec2191fbacd8d9ff";
|
|
};
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
configurePhase = "patchShebangs scripts/";
|
|
|
|
nativeBuildInputs = [ pkgconfig which hexdump ];
|
|
|
|
# http://knot-resolver.readthedocs.io/en/latest/build.html#requirements
|
|
buildInputs = [ knot-dns luajit libuv gnutls nettle lmdb ]
|
|
++ optional doCheck cmocka
|
|
++ optional stdenv.isLinux systemd # sd_notify
|
|
## optional dependencies; TODO: libedit, dnstap
|
|
;
|
|
|
|
makeFlags = [
|
|
"PREFIX=$(out)"
|
|
"ROOTHINTS=${dns-root-data}/root.hints"
|
|
"KEYFILE_DEFAULT=${dns-root-data}/root.ds"
|
|
];
|
|
CFLAGS = [ "-O2" "-DNDEBUG" ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
doCheck = true;
|
|
doInstallCheck = false; # FIXME
|
|
preInstallCheck = ''
|
|
patchShebangs tests/config/runtest.sh
|
|
'';
|
|
|
|
postInstall = ''
|
|
rm "$out"/etc/knot-resolver/root.hints # using system-wide instead
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Caching validating DNS resolver, from .cz domain registry";
|
|
homepage = https://knot-resolver.cz;
|
|
license = licenses.gpl3Plus;
|
|
# Platforms using negative pointers for stack won't work ATM due to LuaJIT impl.
|
|
platforms = filter (p: p != "aarch64-linux") platforms.unix;
|
|
maintainers = [ maintainers.vcunat /* upstream developer */ ];
|
|
};
|
|
};
|
|
|
|
wrapped-full = with luajitPackages; let
|
|
luaPkgs = [
|
|
luasec luasocket # trust anchor bootstrap, prefill module
|
|
lfs # prefill module
|
|
# Almost all is for the 'http' module:
|
|
http cqueues fifo lpeg lpeg_patterns luaossl compat53 basexx
|
|
];
|
|
in runCommand unwrapped.name
|
|
{
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
preferLocalBuild = true;
|
|
allowSubstitutes = false;
|
|
}
|
|
''
|
|
mkdir -p "$out/sbin" "$out/share"
|
|
makeWrapper '${unwrapped}/sbin/kresd' "$out"/sbin/kresd \
|
|
--set LUA_PATH '${concatStringsSep ";" (map getLuaPath luaPkgs)}' \
|
|
--set LUA_CPATH '${concatStringsSep ";" (map getLuaCPath luaPkgs)}'
|
|
ln -sr '${unwrapped}/share/man' "$out"/share/
|
|
ln -sr "$out"/{sbin,bin}
|
|
'';
|
|
|
|
in result
|
|
|