metabase: add passthru tests

This commit is contained in:
Konrad Borowski 2021-12-11 00:11:52 +01:00
parent 6dfe6024b0
commit 9eee84f9f0

View file

@ -1,4 +1,4 @@
{ lib, stdenv, fetchurl, makeWrapper, jdk11 }:
{ lib, stdenv, fetchurl, makeWrapper, jdk11, nixosTests }:
stdenv.mkDerivation rec {
pname = "metabase";
@ -24,4 +24,7 @@ stdenv.mkDerivation rec {
platforms = platforms.all;
maintainers = with maintainers; [ schneefux thoughtpolice mmahut ];
};
passthru.tests = {
inherit (nixosTests) metabase;
};
}