about summary refs log tree commit diff
path: root/pkgs/development/tools/golint
diff options
context:
space:
mode:
authorBrendan Long <self@brendanlong.com>2015-01-06 01:18:55 -0600
committerBrendan Long <self@brendanlong.com>2015-01-06 13:31:02 -0600
commit8c3399f4d88291c0e1aeba4bfdfb82a81547abb2 (patch)
tree14290b1379ba53521fb2521ef00087a1db415376 /pkgs/development/tools/golint
parente9d868de631597a82b28927fb89ba7c2dfa52def (diff)
go: Update to 1.4
Diffstat (limited to 'pkgs/development/tools/golint')
-rw-r--r--pkgs/development/tools/golint/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/tools/golint/default.nix b/pkgs/development/tools/golint/default.nix
index b9292f6fa1174..83dd50f8d4cb7 100644
--- a/pkgs/development/tools/golint/default.nix
+++ b/pkgs/development/tools/golint/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, lib, go, fetchurl, fetchgit, fetchhg, fetchbzr, fetchFromGitHub }:
+{ stdenv, lib, go_1_3, fetchurl, fetchgit, fetchhg, fetchbzr, fetchFromGitHub }:
 
 stdenv.mkDerivation rec {
   name = "golint";
@@ -7,7 +7,7 @@ stdenv.mkDerivation rec {
     inherit stdenv lib fetchgit fetchhg fetchbzr fetchFromGitHub;
   };
 
-  buildInputs = [ go ];
+  buildInputs = [ go_1_3 ];
 
   buildPhase = ''
     export GOPATH=$src