packer: 1.7.10 -> 1.8.0

This commit is contained in:
techknowlogick 2022-03-09 23:52:27 -05:00
parent a8110b9347
commit 2d1321c99d

View file

@ -7,16 +7,16 @@
buildGoModule rec { buildGoModule rec {
pname = "packer"; pname = "packer";
version = "1.7.10"; version = "1.8.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "hashicorp"; owner = "hashicorp";
repo = "packer"; repo = "packer";
rev = "v${version}"; rev = "v${version}";
sha256 = "sha256-KkdkLos55n+IE9oIZPADIcSgrE6kn0rDWzEkwoYfoFw="; sha256 = "sha256-rvOfDMALzZx8LfChgB3nC4GCTlSET43SkhW1EkA59zo=";
}; };
vendorSha256 = "sha256-oSIwp8t+US8yNziuq0BR8BsVR1/e0jkxE4QuiqyheQQ="; vendorSha256 = "sha256-ZQ+7F49VnpPtxWlZVBez2mpVCx8gIPEDKBD5qM9NcMo=";
subPackages = [ "." ]; subPackages = [ "." ];
@ -32,7 +32,7 @@ buildGoModule rec {
description = "A tool for creating identical machine images for multiple platforms from a single source configuration"; description = "A tool for creating identical machine images for multiple platforms from a single source configuration";
homepage = "https://www.packer.io"; homepage = "https://www.packer.io";
license = licenses.mpl20; license = licenses.mpl20;
maintainers = with maintainers; [ cstrahan zimbatm ma27 ]; maintainers = with maintainers; [ cstrahan zimbatm ma27 techknowlogick ];
changelog = "https://github.com/hashicorp/packer/blob/v${version}/CHANGELOG.md"; changelog = "https://github.com/hashicorp/packer/blob/v${version}/CHANGELOG.md";
platforms = platforms.unix; platforms = platforms.unix;
}; };