ncdns: add test to passthru.tests

This commit is contained in:
rnhmjoj 2020-06-14 01:16:12 +02:00
parent 14aa8d9b75
commit 8ff681a7ca
No known key found for this signature in database
GPG key ID: BFBAF4C975F76450

View file

@ -1,4 +1,4 @@
{ lib, git, buildGoPackage, fetchFromGitHub, libcap }:
{ lib, nixosTests, git, buildGoPackage, fetchFromGitHub, libcap }:
buildGoPackage rec {
pname = "ncdns";
@ -35,4 +35,7 @@ buildGoPackage rec {
platforms = platforms.all;
maintainers = with maintainers; [ rnhmjoj ];
};
passthru.tests.ncdns = nixosTests.ncdns;
}