summary refs log tree commit diff
path: root/pkgs/development/tools/packer
diff options
context:
space:
mode:
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 8b89e8ae82d..651e64467c4 100644
--- a/pkgs/development/tools/packer/default.nix
+++ b/pkgs/development/tools/packer/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, lib, gox, fetchgit, fetchhg, fetchbzr, fetchFromGitHub }:
+{ stdenv, lib, go, gox, fetchgit, fetchhg, fetchbzr, fetchFromGitHub }:
 
 stdenv.mkDerivation rec {
   name = "packer-0.7.5";
@@ -7,7 +7,7 @@ stdenv.mkDerivation rec {
     inherit stdenv lib fetchgit fetchhg fetchbzr fetchFromGitHub;
   };
 
-  buildInputs = [ gox ];
+  buildInputs = [ go gox ];
 
   installPhase = ''
     export GOPATH=$src