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
This commit is contained in:
parent
b1daaa4678
commit
2925c7770a
1 changed files with 4 additions and 12 deletions
|
@ -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 = [ "." ];
|
||||
|
||||
|
|
Loading…
Reference in a new issue