summary refs log tree commit diff
path: root/pkgs/development/tools/gomodifytags/default.nix
blob: 188f60e3ef07de0ba9b340012498cd9269d5e28e (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
{ stdenv, buildGoPackage, fetchFromGitHub }:

buildGoPackage rec {
  pname = "gomodifytags-unstable";
  version = "2018-09-14";
  rev = "141225bf62b6e5c9c0c9554a2e993e8c30aebb1d";

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

  src = fetchFromGitHub {
    inherit rev;
    owner = "fatih";
    repo = "gomodifytags";
    sha256 = "16qbp594l90qpvf388wlv0kf6wvqj1vz2mqq0g3qcz6dkrc4cjqa";
  };

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