Merge pull request #112851 from marsam/update-podman

podman: 2.2.1 -> 3.0.0
wip/yesman
adisbladis 3 years ago committed by GitHub
commit 453b93ca03
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 10
      pkgs/applications/virtualization/podman/default.nix

@ -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…
Cancel
Save