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
, rustPlatform
, Security
, SystemConfiguration
}:
rustPlatform.buildRustPackage rec {
pname = "git-cliff";
version = "1.4.0";
version = "2.0.4";
src = fetchFromGitHub {
owner = "orhun";
repo = "git-cliff";
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
doCheck = false;
buildInputs = lib.optionals stdenv.isDarwin [
Security
Security SystemConfiguration
];
meta = with lib; {

View File

@ -2338,7 +2338,7 @@ with pkgs;
};
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 { };