about summary refs log tree commit diff
path: root/pkgs/development/tools
diff options
context:
space:
mode:
authorMaximilian Bosch <maximilian@mbosch.me>2020-06-10 22:29:13 +0200
committerMaximilian Bosch <maximilian@mbosch.me>2020-06-10 22:42:45 +0200
commit62523f3388f0034dfb0906fc5e6260c064f4dc90 (patch)
tree1c6fb940c76da2bf94dd223b4dc63efcaa9cc2d4 /pkgs/development/tools
parentddb49be96e27c4cae3e04f8f9e58df673ae72913 (diff)
downloadnixlib-62523f3388f0034dfb0906fc5e6260c064f4dc90.tar
nixlib-62523f3388f0034dfb0906fc5e6260c064f4dc90.tar.gz
nixlib-62523f3388f0034dfb0906fc5e6260c064f4dc90.tar.bz2
nixlib-62523f3388f0034dfb0906fc5e6260c064f4dc90.tar.lz
nixlib-62523f3388f0034dfb0906fc5e6260c064f4dc90.tar.xz
nixlib-62523f3388f0034dfb0906fc5e6260c064f4dc90.tar.zst
nixlib-62523f3388f0034dfb0906fc5e6260c064f4dc90.zip
packer: 1.5.6 -> 1.6.0
https://github.com/hashicorp/packer/releases/tag/v1.6.0
Diffstat (limited to 'pkgs/development/tools')
-rw-r--r--pkgs/development/tools/packer/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/tools/packer/default.nix b/pkgs/development/tools/packer/default.nix
index 32ac95cff6a4..382fda72a4cd 100644
--- a/pkgs/development/tools/packer/default.nix
+++ b/pkgs/development/tools/packer/default.nix
@@ -1,7 +1,7 @@
 { stdenv, buildGoPackage, fetchFromGitHub }:
 buildGoPackage rec {
   pname = "packer";
-  version = "1.5.6";
+  version = "1.6.0";
 
   goPackagePath = "github.com/hashicorp/packer";
 
@@ -11,14 +11,14 @@ buildGoPackage rec {
     owner = "hashicorp";
     repo = "packer";
     rev = "v${version}";
-    sha256 = "0pwygrh6pjmx8a1jc12929x0slj7w3b8p3pzswnbk7klyhj4jkp8";
+    sha256 = "0qddljg330i7059kvij84pjzz67g6qh1w2zcmsj6rv58ix8xsfx7";
   };
 
   meta = with stdenv.lib; {
     description = "A tool for creating identical machine images for multiple platforms from a single source configuration";
     homepage    = "https://www.packer.io";
     license     = licenses.mpl20;
-    maintainers = with maintainers; [ cstrahan zimbatm ];
+    maintainers = with maintainers; [ cstrahan zimbatm ma27 ];
     platforms   = platforms.unix;
   };
 }