From 2925c7770a95b01a49e110b25222fcf65d7c096b Mon Sep 17 00:00:00 2001 From: "maxine [they]" <35892750+maxeaubrey@users.noreply.github.com> Date: Fri, 1 Oct 2021 23:58:41 +0200 Subject: [PATCH] packer: 1.7.5 -> 1.7.6 (#140205) - https://github.com/hashicorp/packer/releases/tag/v1.7.6 - https://github.com/hashicorp/packer/blob/v1.7.6/CHANGELOG.md --- pkgs/development/tools/packer/default.nix | 16 ++++------------ 1 file changed, 4 insertions(+), 12 deletions(-) diff --git a/pkgs/development/tools/packer/default.nix b/pkgs/development/tools/packer/default.nix index b7e88fb18847..eafa2b7b85dc 100644 --- a/pkgs/development/tools/packer/default.nix +++ b/pkgs/development/tools/packer/default.nix @@ -1,25 +1,17 @@ -{ lib, buildGoModule, fetchFromGitHub, installShellFiles, fetchpatch }: +{ lib, buildGoModule, fetchFromGitHub, installShellFiles }: buildGoModule rec { pname = "packer"; - version = "1.7.5"; + version = "1.7.6"; src = fetchFromGitHub { owner = "hashicorp"; repo = "packer"; rev = "v${version}"; - sha256 = "15kw4zy0p7hr6jm0202s0fk5ja3ff0pdir37qdifngm1x7id1vxc"; + sha256 = "sha256-nZeOtV6sbgzUhDOlWJ5eLzOh0gsaukXFrPg3y8x9ce4="; }; - vendorSha256 = "1785yv48sn504zcig9szjw9s4dxb55dg9idh10i2gzfgbda2c3nf"; - - patches = [ - # https://github.com/hashicorp/packer/pull/11282 - (fetchpatch { - url = "https://github.com/hashicorp/packer/commit/dbf13803217e18c6cb567ffefc9476c4e0149e02.patch"; - sha256 = "1n038x6qnr75c5ci2jp8jcwp6yvlchcf2nydksb2s75ffvidjrsa"; - }) - ]; + vendorSha256 = "sha256-zg4mVFvP/SciCLDF9FopqzeiE5dfpxfZJ6BYjcj2BZ0="; subPackages = [ "." ];