summary refs log tree commit diff
path: root/pkgs/development/tools/golint
diff options
context:
space:
mode:
authorWilliam A. Kennington III <william@wkennington.com>2015-08-19 13:50:09 -0700
committerWilliam A. Kennington III <william@wkennington.com>2015-08-19 13:51:09 -0700
commitc3592084cf17865ba460a1be0e7af97c6c3571c5 (patch)
tree620c86c7f3f351b5ce694dbd13765790759407c1 /pkgs/development/tools/golint
parente27567cff107ae7d44ccc0bf76292cf0644d27d6 (diff)
downloadnixpkgs-c3592084cf17865ba460a1be0e7af97c6c3571c5.tar
nixpkgs-c3592084cf17865ba460a1be0e7af97c6c3571c5.tar.gz
nixpkgs-c3592084cf17865ba460a1be0e7af97c6c3571c5.tar.bz2
nixpkgs-c3592084cf17865ba460a1be0e7af97c6c3571c5.tar.lz
nixpkgs-c3592084cf17865ba460a1be0e7af97c6c3571c5.tar.xz
nixpkgs-c3592084cf17865ba460a1be0e7af97c6c3571c5.tar.zst
nixpkgs-c3592084cf17865ba460a1be0e7af97c6c3571c5.zip
golint: Update to 2015-06-23
Diffstat (limited to 'pkgs/development/tools/golint')
-rw-r--r--pkgs/development/tools/golint/default.nix28
1 files changed, 0 insertions, 28 deletions
diff --git a/pkgs/development/tools/golint/default.nix b/pkgs/development/tools/golint/default.nix
deleted file mode 100644
index 7be4f84680a..00000000000
--- a/pkgs/development/tools/golint/default.nix
+++ /dev/null
@@ -1,28 +0,0 @@
-{ lib, goPackages, fetchFromGitHub }:
-
-with goPackages;
-
-buildGoPackage rec {
-  rev = "8ca23475bcb43213a55dd8210b69363f6b0e09c1";
-  name = "golint-${lib.strings.substring 0 7 rev}";
-  goPackagePath = "github.com/golang/lint";
-
-  src = fetchFromGitHub {
-    inherit rev;
-    owner = "golang";
-    repo = "lint";
-    sha256 = "16wbykik6dw3x9s7iqi4ln8kvzsh3g621wb8mk4nfldw7lyqp3cs";
-  };
-
-  subPackages = [ "golint" ];
-
-  dontInstallSrc = true;
-
-  meta = with lib; {
-    description = "Linter for Go source code";
-    homepage = https://github.com/golang/lint;
-    license = licenses.mit;
-    maintainers = with maintainers; [ offline ];
-    platforms = platforms.unix;
-  };
-}