nixpkgs/pkgs/development/tools/changie/default.nix
Matthias Beyer 0e4d8a687f changie: init at 1.8.0
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
2022-08-27 13:57:26 +02:00

25 lines
633 B
Nix

{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "changie";
version = "1.8.0";
src = fetchFromGitHub {
rev = "v${version}";
owner = "miniscruff";
repo = pname;
sha256 = "sha256-VzrSfigpkOvgywq0dHIXZS2If8qc8HCo51FzopKORwM=";
};
vendorSha256 = "sha256-+Q0vNMd8wFz+9bOPfqdPpN2brnUmIf46/9rUYsCTUrQ=";
meta = with lib; {
homepage = "https://changie.dev";
description = "Automated changelog tool for preparing releases with lots of customization options";
license = licenses.mit;
platforms = platforms.unix;
maintainers = with maintainers; [ matthiasbeyer ];
};
}