summary refs log tree commit diff
path: root/pkgs/development/tools/packer
diff options
context:
space:
mode:
authorAndrew Childs <lorne@cons.org.nz>2019-05-26 18:50:03 +0900
committerAndrew Childs <lorne@cons.org.nz>2019-05-26 18:50:03 +0900
commita7a904768cc163376604c1743c97664f9931fa54 (patch)
tree1a49b0000e88a17cdaf92b815b65db0829441ec5 /pkgs/development/tools/packer
parentc7bcd4277cc9a656207b636dbc62fef21dc64c78 (diff)
downloadnixpkgs-a7a904768cc163376604c1743c97664f9931fa54.tar
nixpkgs-a7a904768cc163376604c1743c97664f9931fa54.tar.gz
nixpkgs-a7a904768cc163376604c1743c97664f9931fa54.tar.bz2
nixpkgs-a7a904768cc163376604c1743c97664f9931fa54.tar.lz
nixpkgs-a7a904768cc163376604c1743c97664f9931fa54.tar.xz
nixpkgs-a7a904768cc163376604c1743c97664f9931fa54.tar.zst
nixpkgs-a7a904768cc163376604c1743c97664f9931fa54.zip
packer: 1.4.0 -> 1.4.1
Diffstat (limited to 'pkgs/development/tools/packer')
-rw-r--r--pkgs/development/tools/packer/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/tools/packer/default.nix b/pkgs/development/tools/packer/default.nix
index 162ac045a9d..24a6404dc03 100644
--- a/pkgs/development/tools/packer/default.nix
+++ b/pkgs/development/tools/packer/default.nix
@@ -1,7 +1,7 @@
 { stdenv, buildGoPackage, fetchFromGitHub }:
 buildGoPackage rec {
   name = "packer-${version}";
-  version = "1.4.0";
+  version = "1.4.1";
 
   goPackagePath = "github.com/hashicorp/packer";
 
@@ -11,7 +11,7 @@ buildGoPackage rec {
     owner = "hashicorp";
     repo = "packer";
     rev = "v${version}";
-    sha256 = "0fpzmwh7vq8vc7gvlnpx4ji4yaxwi2h2ksz0z4782469pkcnbg56";
+    sha256 = "13pj48pbhl47rwyi6gd6dhq9wq0z2h8kzjkahhqhf62dfssv35db";
   };
 
   meta = with stdenv.lib; {