git-cliff: 1.4.0 -> 2.0.4

This commit is contained in:
R. Ryantm 2024-02-23 09:28:22 +00:00 committed by Ben Siraphob
parent 46a66fd4a8
commit 7f6cabbb3b
No known key found for this signature in database
GPG Key ID: 45F0E5D788143267
2 changed files with 6 additions and 5 deletions

View File

@ -3,26 +3,27 @@
, fetchFromGitHub , fetchFromGitHub
, rustPlatform , rustPlatform
, Security , Security
, SystemConfiguration
}: }:
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
pname = "git-cliff"; pname = "git-cliff";
version = "1.4.0"; version = "2.0.4";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "orhun"; owner = "orhun";
repo = "git-cliff"; repo = "git-cliff";
rev = "v${version}"; rev = "v${version}";
hash = "sha256-OK2eoWlqlpf/X8EGMnWTv9Gs5FkYvW5rmQDB/Mkbp60="; hash = "sha256-0ReMn37sYpS5uX9Nem7M9LthAvGNdJaAob+tEnjIrMw=";
}; };
cargoHash = "sha256-gtkpZKOaG5p79uJ9cbbGdiOX57bDFTf2/Bd8+WToJrw="; cargoHash = "sha256-xDIXXHoykEtRzWm5NDE1rcFgC4iFxhUPgwlvaoHmV6Y=";
# attempts to run the program on .git in src which is not deterministic # attempts to run the program on .git in src which is not deterministic
doCheck = false; doCheck = false;
buildInputs = lib.optionals stdenv.isDarwin [ buildInputs = lib.optionals stdenv.isDarwin [
Security Security SystemConfiguration
]; ];
meta = with lib; { meta = with lib; {

View File

@ -2338,7 +2338,7 @@ with pkgs;
}; };
git-cliff = callPackage ../applications/version-management/git-cliff { git-cliff = callPackage ../applications/version-management/git-cliff {
inherit (darwin.apple_sdk.frameworks) Security; inherit (darwin.apple_sdk.frameworks) Security SystemConfiguration;
}; };
git-codeowners = callPackage ../applications/version-management/git-codeowners { }; git-codeowners = callPackage ../applications/version-management/git-codeowners { };