knot-dns: add knot-resolver build into passthru.tests

This commit is contained in:
Vladimír Čunát 2021-12-20 16:43:21 +01:00
parent 0fe64c6929
commit c83103e77c
No known key found for this signature in database
GPG Key ID: E747DF1F9575A3AA

View File

@ -1,6 +1,6 @@
{ lib, stdenv, fetchurl, pkg-config, gnutls, liburcu, lmdb, libcap_ng, libidn2, libunistring
, systemd, nettle, libedit, zlib, libiconv, libintl, libmaxminddb, libbpf, nghttp2, libmnl
, autoreconfHook, nixosTests
, autoreconfHook, nixosTests, knot-resolver
}:
stdenv.mkDerivation rec {
@ -53,7 +53,10 @@ stdenv.mkDerivation rec {
rm -r "$out"/lib/*.la
'';
passthru.tests = { inherit (nixosTests) knot; };
passthru.tests = {
inherit (nixosTests) knot;
inherit knot-resolver;
};
meta = with lib; {
description = "Authoritative-only DNS server from .cz domain registry";