lol

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