biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / applications / version-management / git-chglog / default.nix
blobeccc508fc257a522ff8699c6ae6f94fbc27a1498
1 { lib, fetchFromGitHub, buildGoModule }:
3 buildGoModule rec {
4   pname = "git-chglog";
5   version = "0.15.4";
7   src = fetchFromGitHub {
8     owner = "git-chglog";
9     repo = "git-chglog";
10     rev = "v${version}";
11     sha256 = "sha256-rTJn2vUrEnmG2japqCxHv3BR9MpmMfpMLO2FBP6ONbw=";
12   };
14   vendorHash = "sha256-skhEHpSnxOTZrL8XLlQZL3s224mg8XRINKJnatYCQko=";
16   ldflags = [ "-s" "-w" "-X=main.Version=v${version}" ];
18   subPackages = [ "cmd/git-chglog" ];
20   meta = with lib; {
21     description = "CHANGELOG generator implemented in Go (Golang)";
22     homepage = "https://github.com/git-chglog/git-chglog";
23     license = licenses.mit;
24     maintainers = with maintainers; [ ldenefle ];
25     mainProgram = "git-chglog";
26   };