mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 08:59:32 +03:00
Merge pull request #84177 from zowoq/team
maintainers/teams: add podman team
This commit is contained in:
commit
bbb299c8e4
@ -30,4 +30,13 @@ with lib.maintainers; {
|
||||
];
|
||||
scope = "Maintain GNOME desktop environment and platform.";
|
||||
};
|
||||
|
||||
podman = {
|
||||
members = [
|
||||
saschagrunert
|
||||
vdemeester
|
||||
zowoq
|
||||
];
|
||||
scope = "Maintain podman related packages.";
|
||||
};
|
||||
}
|
||||
|
@ -27,7 +27,7 @@ stdenv.mkDerivation rec {
|
||||
homepage = "https://github.com/containers/conmon";
|
||||
description = "An OCI container runtime monitor";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ vdemeester saschagrunert ];
|
||||
maintainers = with maintainers; [ ] ++ teams.podman.members;
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
||||
|
@ -67,5 +67,6 @@ stdenv.mkDerivation rec {
|
||||
license = licenses.gpl2Plus;
|
||||
platforms = platforms.linux;
|
||||
inherit (src.meta) homepage;
|
||||
maintainers = with maintainers; [ ] ++ teams.podman.members;
|
||||
};
|
||||
}
|
||||
|
@ -41,7 +41,7 @@ buildGoPackage rec {
|
||||
homepage = "https://podman.io/";
|
||||
description = "A program for managing pods, containers and container images";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ vdemeester saschagrunert marsam ];
|
||||
maintainers = with maintainers; [ marsam ] ++ teams.podman.members;
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
||||
|
@ -53,7 +53,7 @@ buildGoPackage rec {
|
||||
homepage = https://runc.io/;
|
||||
description = "A CLI tool for spawning and running containers according to the OCI specification";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ offline vdemeester saschagrunert ];
|
||||
maintainers = with maintainers; [ offline ] ++ teams.podman.members;
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
||||
|
@ -39,6 +39,6 @@ buildGoPackage rec {
|
||||
homepage = "https://buildah.io/";
|
||||
changelog = "https://github.com/containers/buildah/releases/tag/v${version}";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ Profpatsch vdemeester saschagrunert ];
|
||||
maintainers = with maintainers; [ Profpatsch ] ++ teams.podman.members;
|
||||
};
|
||||
}
|
||||
|
@ -49,10 +49,10 @@ buildGoPackage {
|
||||
popd
|
||||
'';
|
||||
|
||||
meta = {
|
||||
meta = with stdenv.lib; {
|
||||
description = "A command line utility for various operations on container images and image repositories";
|
||||
homepage = "https://github.com/containers/skopeo";
|
||||
maintainers = with stdenv.lib.maintainers; [ vdemeester lewo ];
|
||||
license = stdenv.lib.licenses.asl20;
|
||||
maintainers = with maintainers; [ lewo ] ++ teams.podman.members;
|
||||
license = licenses.asl20;
|
||||
};
|
||||
}
|
||||
|
@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
|
||||
description = "FUSE implementation for overlayfs";
|
||||
longDescription = "An implementation of overlay+shiftfs in FUSE for rootless containers.";
|
||||
license = licenses.gpl3;
|
||||
maintainers = with maintainers; [ ma9e ];
|
||||
maintainers = with maintainers; [ ma9e ] ++ teams.podman.members;
|
||||
platforms = platforms.unix;
|
||||
inherit (src.meta) homepage;
|
||||
};
|
||||
|
@ -29,7 +29,7 @@ stdenv.mkDerivation rec {
|
||||
homepage = "https://github.com/rootless-containers/slirp4netns";
|
||||
description = "User-mode networking for unprivileged network namespaces";
|
||||
license = licenses.gpl2;
|
||||
maintainers = with maintainers; [ orivej saschagrunert ];
|
||||
maintainers = with maintainers; [ orivej ] ++ teams.podman.members;
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user