blob: 05d5dfe96056c56dcb0a0112f42ff57d3beb33c1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
{ lib, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
pname = "git-chglog";
version = "0.9.1";
goPackagePath = "github.com/git-chglog/git-chglog";
src = fetchFromGitHub {
owner = "git-chglog";
repo = "git-chglog";
rev = version;
sha256 = "08x7w1jlvxxvwnz6pvkjmfd3nqayd8n15r9jbqi2amrp31z0gq0p";
};
meta = with lib; {
description = "CHANGELOG generator implemented in Go (Golang)";
license = licenses.mit;
maintainers = with maintainers; [ ldenefle ];
};
}
|