dnscrypt-wrapper: link NixOS test

rnhmjoj 4cd4b1b1 0bd475c2

+5 -1
+5 -1
pkgs/tools/networking/dnscrypt-wrapper/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, libsodium, libevent }: 1 + { lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, libsodium, libevent, nixosTests }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "dnscrypt-wrapper"; ··· 18 18 19 19 nativeBuildInputs = [ pkg-config autoreconfHook ]; 20 20 buildInputs = [ libsodium libevent ]; 21 + 22 + passthru.tests = { 23 + inherit (nixosTests) dnscrypt-wrapper; 24 + }; 21 25 22 26 meta = with lib; { 23 27 description = "A tool for adding dnscrypt support to any name resolver";