changie: init at 1.8.0
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
This commit is contained in:
parent
ee7da1a0d5
commit
0e4d8a687f
2 changed files with 26 additions and 0 deletions
24
pkgs/development/tools/changie/default.nix
Normal file
24
pkgs/development/tools/changie/default.nix
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
{ 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 ];
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
|
@ -25063,6 +25063,8 @@ with pkgs;
|
||||||
|
|
||||||
charis-sil = callPackage ../data/fonts/charis-sil { };
|
charis-sil = callPackage ../data/fonts/charis-sil { };
|
||||||
|
|
||||||
|
changie = callPackage ../development/tools/changie { };
|
||||||
|
|
||||||
cherry = callPackage ../data/fonts/cherry { inherit (xorg) fonttosfnt mkfontdir; };
|
cherry = callPackage ../data/fonts/cherry { inherit (xorg) fonttosfnt mkfontdir; };
|
||||||
|
|
||||||
chonburi-font = callPackage ../data/fonts/chonburi { };
|
chonburi-font = callPackage ../data/fonts/chonburi { };
|
||||||
|
|
Loading…
Reference in a new issue