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

buildGoModule rec {
  pname = "gomodifytags";
  version = "1.4.0";

  vendorSha256 = null;

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

  src = fetchFromGitHub {
    owner = "fatih";
    repo = "gomodifytags";
    rev = "v${version}";
    sha256 = "1436wjqs6n2jxlyzx38nm4ih6fr11bybivg3wy5nvzfs6cs59q63";
  };

  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;
  };
}