Merge pull request #291603 from vdemeester/bump-buildah

buildah-unwrapped: 1.34.0 -> 1.34.1
This commit is contained in:
Nick Cao 2024-02-28 11:16:04 -05:00 committed by GitHub
commit 96990c69fd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -17,13 +17,13 @@
buildGoModule rec {
pname = "buildah";
version = "1.34.0";
version = "1.34.1";
src = fetchFromGitHub {
owner = "containers";
repo = "buildah";
rev = "v${version}";
hash = "sha256-LX7yc2FnCiquHV/tESJV/VkuUYXbRNSxmMzVpSz/F8w=";
hash = "sha256-0mH6s9BSTkXutwYVG3EpqEcildO3g37Us4pdTmLPcAQ=";
};
outputs = [ "out" "man" ];
@ -62,6 +62,10 @@ buildGoModule rec {
passthru.tests.version = testers.testVersion {
package = buildah;
command = ''
XDG_DATA_HOME="$TMPDIR" XDG_CACHE_HOME="$TMPDIR" XDG_CONFIG_HOME="$TMPDIR" \
buildah --version
'';
};
meta = with lib; {
@ -72,3 +76,4 @@ buildGoModule rec {
maintainers = with maintainers; [ ] ++ teams.podman.members;
};
}