aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/tools/gotags/default.nix
blob: 881ae7e24d4a19651a07b71e896f25e0837ba492 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ stdenv, buildGoPackage, fetchgit }:

buildGoPackage rec {
  pname = "gotags";
  version = "20150803-${stdenv.lib.strings.substring 0 7 rev}";
  rev = "be986a34e20634775ac73e11a5b55916085c48e7";
  
  goPackagePath = "github.com/jstemmer/gotags";

  src = fetchgit {
    inherit rev;
    url = "https://github.com/jstemmer/gotags";
    sha256 = "071wyq90b06xlb3bb0l4qjz1gf4nnci4bcngiddfcxf2l41w1vja";
  };
}