summary refs log tree commit diff
path: root/pkgs/development/tools/gomodifytags/default.nix
blob: f1452bc121148a9d9f2f54f3200433b9d49465a3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ stdenv, lib, buildGoPackage, fetchgit }:

buildGoPackage rec {
  name = "gomodifytags-${version}";
  version = "unstable-2017-12-14";
  rev = "20644152db4fe0ac406d81f3848e8a15f0cdeefa";

  goPackagePath = "github.com/fatih/gomodifytags";

  src = fetchgit {
    inherit rev;
    url = "https://github.com/fatih/gomodifytags";
    sha256 = "0k0ly3mmm9zcaxwlzdbvdxr2gn7kvcqzk1bb7blgq7fkkzpp7i1q";
  };

  meta = {
    description = "Go tool to modify struct field tags.";
    homepage = https://github.com/fatih/gomodifytags;
    maintainers = with stdenv.lib.maintainers; [ vdemeester ];
    license = stdenv.lib.licenses.bsd3;
  };
}