mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
26 lines
716 B
Nix
26 lines
716 B
Nix
{ 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;
|
|
};
|
|
}
|
|
|