aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/tools/misc/git-town/default.nix
blob: 7a8b16c55e0dfc220aee051dda6559d0be78786d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ stdenv, buildGoPackage, fetchFromGitHub }:

buildGoPackage rec {
  pname = "git-town";
  version = "7.3.0";

  goPackagePath = "github.com/Originate/git-town";

  src = fetchFromGitHub {
    owner = "Originate";
    repo = "git-town";
    rev = "v${version}";
    sha256 = "166g9i79hqga8k5wvs0b84q6rqniizzsd39v37s9w16axgdrm6nb";
  };

  buildFlagsArray = [ "-ldflags=-X github.com/Originate/git-town/src/cmd.version=v${version} -X github.com/Originate/git-town/src/cmd.buildDate=nix" ];

  meta = with stdenv.lib; {
    description = "Generic, high-level git support for git-flow workflows";
    homepage = "http://www.git-town.com/";
    maintainers = [ maintainers.allonsy ];
    license = licenses.mit;
  };
}