Merge pull request #112851 from marsam/update-podman

podman: 2.2.1 -> 3.0.0

authored by adisbladis and committed by GitHub 453b93ca edf3a837

+6 -4
+6 -4
pkgs/applications/virtualization/podman/default.nix
··· 16 16 17 17 buildGoModule rec { 18 18 pname = "podman"; 19 - version = "2.2.1"; 19 + version = "3.0.0"; 20 20 21 21 src = fetchFromGitHub { 22 22 owner = "containers"; 23 23 repo = "podman"; 24 24 rev = "v${version}"; 25 - sha256 = "166ch73pqx76ppfkhfg3zqxr71jf5pk5asl5bb5rwhyzf7f057q5"; 25 + sha256 = "141ii271w2azvhl8ragrgzmir9iq9npl8wmh5dr31kvq4z4syxw1"; 26 26 }; 27 27 28 28 vendorSha256 = null; ··· 55 55 mv bin/{podman-remote,podman} 56 56 '' + '' 57 57 install -Dm555 bin/podman $out/bin/podman 58 - installShellCompletion --bash completions/bash/podman 59 - installShellCompletion --zsh completions/zsh/_podman 58 + installShellCompletion --bash completions/bash/* 59 + installShellCompletion --fish completions/fish/* 60 + installShellCompletion --zsh completions/zsh/* 60 61 MANDIR=$man/share/man make install.man-nobuild 61 62 ''; 62 63 ··· 65 66 meta = with lib; { 66 67 homepage = "https://podman.io/"; 67 68 description = "A program for managing pods, containers and container images"; 69 + changelog = "https://github.com/containers/podman/blob/v${version}/changelog.txt"; 68 70 license = licenses.asl20; 69 71 maintainers = with maintainers; [ marsam ] ++ teams.podman.members; 70 72 platforms = platforms.unix;