about summary refs log tree commit diff
path: root/pkgs/development/tools/packer
diff options
context:
space:
mode:
authortechknowlogick <techknowlogick@gitea.io>2022-03-09 23:52:27 -0500
committertechknowlogick <techknowlogick@gitea.io>2022-03-09 23:55:02 -0500
commit2d1321c99d3c9572fd88862a23cee4be76af11ec (patch)
tree4e7e792f729eca373437a3beddd847e96fc323a1 /pkgs/development/tools/packer
parenta8110b93470c3115208b2bb0fd4f26ea0d837b9e (diff)
packer: 1.7.10 -> 1.8.0
Diffstat (limited to 'pkgs/development/tools/packer')
-rw-r--r--pkgs/development/tools/packer/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/tools/packer/default.nix b/pkgs/development/tools/packer/default.nix
index 0b3b15d85bff3..d42bb9e2860a6 100644
--- a/pkgs/development/tools/packer/default.nix
+++ b/pkgs/development/tools/packer/default.nix
@@ -7,16 +7,16 @@
 
 buildGoModule rec {
   pname = "packer";
-  version = "1.7.10";
+  version = "1.8.0";
 
   src = fetchFromGitHub {
     owner = "hashicorp";
     repo = "packer";
     rev = "v${version}";
-    sha256 = "sha256-KkdkLos55n+IE9oIZPADIcSgrE6kn0rDWzEkwoYfoFw=";
+    sha256 = "sha256-rvOfDMALzZx8LfChgB3nC4GCTlSET43SkhW1EkA59zo=";
   };
 
-  vendorSha256 = "sha256-oSIwp8t+US8yNziuq0BR8BsVR1/e0jkxE4QuiqyheQQ=";
+  vendorSha256 = "sha256-ZQ+7F49VnpPtxWlZVBez2mpVCx8gIPEDKBD5qM9NcMo=";
 
   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 ];
+    maintainers = with maintainers; [ cstrahan zimbatm ma27 techknowlogick ];
     changelog   = "https://github.com/hashicorp/packer/blob/v${version}/CHANGELOG.md";
     platforms   = platforms.unix;
   };