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

(cherry picked from commit c83103e77c)
This commit is contained in:
Vladimír Čunát
2021-12-20 16:43:21 +01:00
committed by github-actions[bot]
parent eb13450fa3
commit fdca9124da

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";