krb5: add pasthru.tests

This commit is contained in:
ajs124 2022-07-09 21:13:09 +02:00
parent 8108584109
commit 5719e20547

View File

@ -1,5 +1,6 @@
{ lib, stdenv, fetchurl, pkg-config, perl, bison, bootstrap_cmds { lib, stdenv, fetchurl, pkg-config, perl, bison, bootstrap_cmds
, openssl, openldap, libedit, keyutils , openssl, openldap, libedit, keyutils
, nixosTests
# Extra Arguments # Extra Arguments
, type ? "" , type ? ""
@ -89,5 +90,8 @@ stdenv.mkDerivation rec {
platforms = platforms.unix ++ platforms.windows; platforms = platforms.unix ++ platforms.windows;
}; };
passthru.implementation = "krb5"; passthru = {
implementation = "krb5";
tests = { inherit (nixosTests) kerberos; };
};
} }