mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
Merge pull request #136814 from siraben/git-cliff-init
git-cliff: init at 0.2.6
This commit is contained in:
commit
6b30660ee1
2 changed files with 31 additions and 0 deletions
|
@ -0,0 +1,27 @@
|
|||
{ lib, stdenv, fetchFromGitHub, rustPlatform, Security }:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "git-cliff";
|
||||
version = "0.2.6";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "orhun";
|
||||
repo = "git-cliff";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-oQ23jvKR4HGIMnW56FVE0XlBpO4pnMBbRXVoc6OuiHo=";
|
||||
};
|
||||
|
||||
cargoSha256 = "sha256-49RHGOhTaYrg+JKYZMWcgSL7dxe6H50G6n9tJyGaLMQ=";
|
||||
|
||||
# attempts to run the program on .git in src which is not deterministic
|
||||
doCheck = false;
|
||||
|
||||
buildInputs = lib.optionals stdenv.isDarwin [ Security ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "A highly customizable Changelog Generator that follows Conventional Commit specifications";
|
||||
homepage = "https://github.com/orhun/git-cliff";
|
||||
license = licenses.gpl3Only;
|
||||
maintainers = with maintainers; [ siraben ];
|
||||
};
|
||||
}
|
|
@ -5277,6 +5277,10 @@ with pkgs;
|
|||
|
||||
git-cinnabar = callPackage ../applications/version-management/git-and-tools/git-cinnabar { };
|
||||
|
||||
git-cliff = callPackage ../applications/version-management/git-and-tools/git-cliff {
|
||||
inherit (pkgs.darwin.apple_sdk.frameworks) Security;
|
||||
};
|
||||
|
||||
git-codeowners = callPackage ../applications/version-management/git-and-tools/git-codeowners { };
|
||||
|
||||
git-codereview = callPackage ../applications/version-management/git-and-tools/git-codereview { };
|
||||
|
|
Loading…
Reference in a new issue