memcached: add nixos tests to passthru

This commit is contained in:
Jonathan Ringer
2020-04-07 10:53:16 -07:00
parent a2ca435007
commit efc01e881d

View File

@@ -1,4 +1,4 @@
{stdenv, fetchurl, cyrus_sasl, libevent}:
{stdenv, fetchurl, cyrus_sasl, libevent, nixosTests }:
stdenv.mkDerivation rec {
version = "1.6.2";
@@ -27,4 +27,7 @@ stdenv.mkDerivation rec {
maintainers = [ maintainers.coconnor ];
platforms = platforms.linux ++ platforms.darwin;
};
passthru.tests = {
smoke-tests = nixosTests.memcached;
};
}