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
No known key found for this signature in database
GPG key ID: 5C841D3CFDFEC4E0

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