about summary refs log tree commit diff
path: root/pkgs/development/tools/packer
diff options
context:
space:
mode:
authorzowoq <59103226+zowoq@users.noreply.github.com>2022-02-03 09:41:54 +1000
committerzowoq <59103226+zowoq@users.noreply.github.com>2022-02-03 09:41:54 +1000
commit49268792710c34633fcfbd261b746cfe9af1576b (patch)
tree416fd061c198d40d67f3c21b71e8698731b9b57d /pkgs/development/tools/packer
parent8f6cdee25ab8c415f0175b243d2b8dc17e9729d5 (diff)
packer: 1.7.9 -> 1.7.10
https://github.com/hashicorp/packer/blob/master/CHANGELOG.md#1710-february-02-2022
Diffstat (limited to 'pkgs/development/tools/packer')
-rw-r--r--pkgs/development/tools/packer/default.nix7
1 files changed, 3 insertions, 4 deletions
diff --git a/pkgs/development/tools/packer/default.nix b/pkgs/development/tools/packer/default.nix
index e7d5c30b0a5c8..0b3b15d85bff3 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.9";
+  version = "1.7.10";
 
   src = fetchFromGitHub {
     owner = "hashicorp";
     repo = "packer";
     rev = "v${version}";
-    sha256 = "sha256-e2G4kxcizE2lfdryS4S04OwWxseyUqGS0SAaBdiXax0=";
+    sha256 = "sha256-KkdkLos55n+IE9oIZPADIcSgrE6kn0rDWzEkwoYfoFw=";
   };
 
-  vendorSha256 = "sha256-5YcDaGbvw6xo5J8mtJ3CUS8JNCqKUD7kdUyfYIkQ6aE=";
+  vendorSha256 = "sha256-oSIwp8t+US8yNziuq0BR8BsVR1/e0jkxE4QuiqyheQQ=";
 
   subPackages = [ "." ];
 
@@ -35,6 +35,5 @@ buildGoModule rec {
     maintainers = with maintainers; [ cstrahan zimbatm ma27 ];
     changelog   = "https://github.com/hashicorp/packer/blob/v${version}/CHANGELOG.md";
     platforms   = platforms.unix;
-    broken = stdenv.isDarwin; # needs to update gopsutil to at least v3.21.3 to include https://github.com/shirou/gopsutil/pull/1042
   };
 }