about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMaximilian Bosch <maximilian@mbosch.me>2021-09-26 15:44:02 +0200
committerGitHub <noreply@github.com>2021-09-26 15:44:02 +0200
commitc9b005ff13c6ebc3b726548963014899e1012352 (patch)
tree4c226fe4d1e0fe7f8c7ea50a2a8fee54fe2a61c2
parent4f4b4c0ea5835263b8922beb939a962928261a6e (diff)
parentfe6701ec3ab3ede6f53d6f014fe1db80b83d0fa7 (diff)
downloadnixlib-c9b005ff13c6ebc3b726548963014899e1012352.tar
nixlib-c9b005ff13c6ebc3b726548963014899e1012352.tar.gz
nixlib-c9b005ff13c6ebc3b726548963014899e1012352.tar.bz2
nixlib-c9b005ff13c6ebc3b726548963014899e1012352.tar.lz
nixlib-c9b005ff13c6ebc3b726548963014899e1012352.tar.xz
nixlib-c9b005ff13c6ebc3b726548963014899e1012352.tar.zst
nixlib-c9b005ff13c6ebc3b726548963014899e1012352.zip
Merge pull request #139528 from maxeaubrey/packer_1.7.5
packer: 1.7.4 -> 1.7.5
-rw-r--r--pkgs/development/tools/packer/default.nix17
1 files changed, 13 insertions, 4 deletions
diff --git a/pkgs/development/tools/packer/default.nix b/pkgs/development/tools/packer/default.nix
index 7b86f8da10ed..b7e88fb18847 100644
--- a/pkgs/development/tools/packer/default.nix
+++ b/pkgs/development/tools/packer/default.nix
@@ -1,17 +1,25 @@
-{ lib, buildGoModule, fetchFromGitHub, installShellFiles }:
+{ lib, buildGoModule, fetchFromGitHub, installShellFiles, fetchpatch }:
 
 buildGoModule rec {
   pname = "packer";
-  version = "1.7.4";
+  version = "1.7.5";
 
   src = fetchFromGitHub {
     owner = "hashicorp";
     repo = "packer";
     rev = "v${version}";
-    sha256 = "sha256-VNOq9uhtzf1hdEn+bkAOYy4gZxP5ek0WaaS/71uJzrA=";
+    sha256 = "15kw4zy0p7hr6jm0202s0fk5ja3ff0pdir37qdifngm1x7id1vxc";
   };
 
-  vendorSha256 = "sha256-WYA/wZJg93+X4IAX9hOMRHVRQRyA4N4aDaScDgkGUIE=";
+  vendorSha256 = "1785yv48sn504zcig9szjw9s4dxb55dg9idh10i2gzfgbda2c3nf";
+
+  patches = [
+    # https://github.com/hashicorp/packer/pull/11282
+    (fetchpatch {
+      url = "https://github.com/hashicorp/packer/commit/dbf13803217e18c6cb567ffefc9476c4e0149e02.patch";
+      sha256 = "1n038x6qnr75c5ci2jp8jcwp6yvlchcf2nydksb2s75ffvidjrsa";
+    })
+  ];
 
   subPackages = [ "." ];
 
@@ -28,6 +36,7 @@ buildGoModule rec {
     homepage    = "https://www.packer.io";
     license     = licenses.mpl20;
     maintainers = with maintainers; [ cstrahan zimbatm ma27 ];
+    changelog   = "https://github.com/hashicorp/packer/blob/v${version}/CHANGELOG.md";
     platforms   = platforms.unix;
   };
 }