forked from mirrors/nixpkgs
podman: 2.2.1 -> 3.0.0
https://github.com/containers/podman/releases/tag/v3.0.0
This commit is contained in:
parent
7184e58a7f
commit
c831e4e9e4
|
@ -16,13 +16,13 @@
|
|||
|
||||
buildGoModule rec {
|
||||
pname = "podman";
|
||||
version = "2.2.1";
|
||||
version = "3.0.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "containers";
|
||||
repo = "podman";
|
||||
rev = "v${version}";
|
||||
sha256 = "166ch73pqx76ppfkhfg3zqxr71jf5pk5asl5bb5rwhyzf7f057q5";
|
||||
sha256 = "141ii271w2azvhl8ragrgzmir9iq9npl8wmh5dr31kvq4z4syxw1";
|
||||
};
|
||||
|
||||
vendorSha256 = null;
|
||||
|
@ -55,8 +55,9 @@ buildGoModule rec {
|
|||
mv bin/{podman-remote,podman}
|
||||
'' + ''
|
||||
install -Dm555 bin/podman $out/bin/podman
|
||||
installShellCompletion --bash completions/bash/podman
|
||||
installShellCompletion --zsh completions/zsh/_podman
|
||||
installShellCompletion --bash completions/bash/*
|
||||
installShellCompletion --fish completions/fish/*
|
||||
installShellCompletion --zsh completions/zsh/*
|
||||
MANDIR=$man/share/man make install.man-nobuild
|
||||
'';
|
||||
|
||||
|
@ -65,6 +66,7 @@ buildGoModule rec {
|
|||
meta = with lib; {
|
||||
homepage = "https://podman.io/";
|
||||
description = "A program for managing pods, containers and container images";
|
||||
changelog = "https://github.com/containers/podman/blob/v${version}/changelog.txt";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ marsam ] ++ teams.podman.members;
|
||||
platforms = platforms.unix;
|
||||
|
|
Loading…
Reference in a new issue