podman: 5.8.3 -> 5.8.4 (#536067)

This commit is contained in:
dotlambda
2026-06-28 16:36:21 +00:00
committed by GitHub
2 changed files with 5 additions and 4 deletions
+2 -2
View File
@@ -83,7 +83,7 @@ import ../make-test-python.nix (
};
testScript = ''
import os
import subprocess
import shlex
@@ -93,7 +93,7 @@ import ../make-test-python.nix (
def cmd(command):
print(f"+{command}")
r = os.system(command)
r = subprocess.run(command, shell=True).returncode
if r != 0:
raise Exception(f"Command {command} failed with exit code {r}")
+3 -2
View File
@@ -42,13 +42,13 @@
}:
buildGoModule (finalAttrs: {
pname = "podman";
version = "5.8.3";
version = "5.8.4";
src = fetchFromGitHub {
owner = "containers";
repo = "podman";
tag = "v${finalAttrs.version}";
hash = "sha256-MS5eaGTcCAtEvoQUhGlX8UfoOqNOv0VAoeFxfAvB3Zs=";
hash = "sha256-zhEtMZVKiv1L72EMlwgz8sHpmvhejGp98oW63aPj+rQ=";
};
patches = [
@@ -204,5 +204,6 @@ buildGoModule (finalAttrs: {
license = lib.licenses.asl20;
teams = [ lib.teams.podman ];
mainProgram = "podman";
platforms = lib.platforms.linux;
};
})