about summary refs log tree commit diff
path: root/pkgs/development/tools/gotags/default.nix
blob: 0a55fc66830f372ca0aab010dc646e67a116aaca (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ lib, buildGoPackage, fetchFromGitHub }:

buildGoPackage rec {
  pname = "gotags";
  version = "unstable-2015-08-03";

  goPackagePath = "github.com/jstemmer/gotags";

  src = fetchFromGitHub {
    owner = "jstemmer";
    repo = "gotags";
    rev = "be986a34e20634775ac73e11a5b55916085c48e7";
    sha256 = "sha256-Su7AA6HCdeZai8+yRSKzlrgXvsSEgrXGot2ABRL2PBw=";
  };
}