nixpkgs/pkgs/tools/misc/git-town/default.nix

25 lines
723 B
Nix
Raw Normal View History

{ lib, buildGoPackage, fetchFromGitHub }:
2020-04-02 06:43:26 +00:00
buildGoPackage rec {
pname = "git-town";
2021-03-13 06:00:36 +00:00
version = "7.5.0";
2020-09-02 01:44:48 +00:00
goPackagePath = "github.com/git-town/git-town";
2020-04-02 06:43:26 +00:00
src = fetchFromGitHub {
2020-09-02 01:44:48 +00:00
owner = "git-town";
2020-04-02 06:43:26 +00:00
repo = "git-town";
rev = "v${version}";
2021-03-13 06:00:36 +00:00
sha256 = "sha256-RmLDlTK+JO2KRLuLvO927W3WYdDlteBIpgTgDXh8lC8=";
2020-04-02 06:43:26 +00:00
};
2020-09-02 01:44:48 +00:00
buildFlagsArray = [ "-ldflags=-X github.com/git-town/git-town/src/cmd.version=v${version} -X github.com/git-town/git-town/src/cmd.buildDate=nix" ];
meta = with lib; {
2020-04-02 06:43:26 +00:00
description = "Generic, high-level git support for git-flow workflows";
homepage = "https://www.git-town.com/";
2020-09-02 01:44:48 +00:00
maintainers = [ maintainers.allonsy maintainers.blaggacao ];
2020-04-02 06:43:26 +00:00
license = licenses.mit;
};
}