buildah: 1.29.1 -> 1.30.0

Diff: https://github.com/containers/buildah/compare/v1.29.1...v1.30.0

Changelog: https://github.com/containers/buildah/releases/tag/v1.30.0

zowoq 265bcf65 dfb84d66

+9 -3
+8 -2
pkgs/development/tools/buildah/default.nix
··· 11 11 , libapparmor 12 12 , libselinux 13 13 , libseccomp 14 + , testers 15 + , buildah 14 16 }: 15 17 16 18 buildGoModule rec { 17 19 pname = "buildah"; 18 - version = "1.29.1"; 20 + version = "1.30.0"; 19 21 20 22 src = fetchFromGitHub { 21 23 owner = "containers"; 22 24 repo = "buildah"; 23 25 rev = "v${version}"; 24 - hash = "sha256-l21mirarWEOd+XxyM0YgfDiA1JSEr/uqREmBS22C9fs="; 26 + hash = "sha256-h0fipw3lJKy+VkGkh1XbZ6wUOg4001uURoJpjNq7QOs="; 25 27 }; 26 28 27 29 outputs = [ "out" "man" ]; ··· 57 59 make -C docs install PREFIX="$man" 58 60 runHook postInstall 59 61 ''; 62 + 63 + passthru.tests.version = testers.testVersion { 64 + package = buildah; 65 + }; 60 66 61 67 meta = with lib; { 62 68 description = "A tool which facilitates building OCI images";
+1 -1
pkgs/development/tools/buildah/wrapper.nix
··· 41 41 42 42 in runCommand buildah-unwrapped.name { 43 43 name = "${buildah-unwrapped.pname}-wrapper-${buildah-unwrapped.version}"; 44 - inherit (buildah-unwrapped) pname version; 44 + inherit (buildah-unwrapped) pname version passthru; 45 45 46 46 preferLocalBuild = true; 47 47