Merge pull request #244485 from QJoly/packer

packer: 1.9.1 -> 1.9.2
This commit is contained in:
Mario Rodas 2023-07-23 17:06:43 -05:00 committed by GitHub
commit 1638a74189
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7,16 +7,16 @@
buildGoModule rec {
pname = "packer";
version = "1.9.1";
version = "1.9.2";
src = fetchFromGitHub {
owner = "hashicorp";
repo = "packer";
rev = "v${version}";
sha256 = "sha256-imdVXgW3w0Bv4qWPJIRhZPim7c0WRHKvRS/uBk7nzaI=";
sha256 = "sha256-ptWy54UCPXPm2vxiysZSRFn4DMQOBORaajipFC+npRw=";
};
vendorHash = "sha256-aRjSYnb8xyjI4Gn4I91aP3evCqimlL5zR6jpgWNFRME=";
vendorHash = "sha256-svoXUaiQprik/aZfpEmIuBZdOGMcdY0nG59fMYt9c3c=";
subPackages = [ "." ];
@ -32,7 +32,7 @@ buildGoModule rec {
description = "A tool for creating identical machine images for multiple platforms from a single source configuration";
homepage = "https://www.packer.io";
license = licenses.mpl20;
maintainers = with maintainers; [ cstrahan zimbatm ma27 techknowlogick ];
maintainers = with maintainers; [ cstrahan zimbatm ma27 techknowlogick qjoly ];
changelog = "https://github.com/hashicorp/packer/blob/v${version}/CHANGELOG.md";
};
}