catatonit: add `passthru.tests` and `teams.podman`
This commit is contained in:
parent
fd3f1ec19a
commit
5a251359a8
|
@ -1,4 +1,4 @@
|
||||||
{ lib, stdenv, fetchFromGitHub, fetchpatch, autoreconfHook, glibc }:
|
{ lib, stdenv, fetchFromGitHub, fetchpatch, autoreconfHook, glibc, nixosTests }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "catatonit";
|
pname = "catatonit";
|
||||||
|
@ -27,11 +27,13 @@ stdenv.mkDerivation rec {
|
||||||
readelf -d $out/bin/catatonit | grep 'There is no dynamic section in this file.'
|
readelf -d $out/bin/catatonit | grep 'There is no dynamic section in this file.'
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
passthru.tests = { inherit (nixosTests) podman; };
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "A container init that is so simple it's effectively brain-dead";
|
description = "A container init that is so simple it's effectively brain-dead";
|
||||||
homepage = "https://github.com/openSUSE/catatonit";
|
homepage = "https://github.com/openSUSE/catatonit";
|
||||||
license = licenses.gpl3Plus;
|
license = licenses.gpl3Plus;
|
||||||
maintainers = with maintainers; [ erosennin ];
|
maintainers = with maintainers; [ erosennin ] ++ teams.podman.members;
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue