mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
46420bbaa3
treewide replacement of stdenv.mkDerivation rec { name = "*-${version}"; version = "*"; to pname
26 lines
751 B
Nix
26 lines
751 B
Nix
{ stdenv, buildGoPackage, fetchFromGitHub }:
|
|
|
|
buildGoPackage rec {
|
|
pname = "git-town";
|
|
version = "7.2.0";
|
|
|
|
goPackagePath = "github.com/Originate/git-town";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Originate";
|
|
repo = "git-town";
|
|
rev = "v${version}";
|
|
sha256 = "0hr0c6iya34lanfhsg9kj03l4ajalcfxkbn4bgwh0749smhi6mrj";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|
|
|