buildah-unwrapped: 1.34.0 -> 1.34.1

Signed-off-by: Vincent Demeester <vincent@sbr.pm>
This commit is contained in:
Vincent Demeester 2024-02-26 17:35:00 +01:00
parent cd2ec848a9
commit d49e40f8f0
No known key found for this signature in database
GPG Key ID: 4B8A6F5F62AFA8D1

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;
};
}