git-cliff 1.4.0 -> 2.0.4 https://repology.org/project/git-cliff/versions attrpath: git-cliff Checking auto update branch... No auto update branch exists Old version 1.4.0" not present in master derivation file with contents: { lib , stdenv , fetchFromGitHub , rustPlatform , Security , SystemConfiguration }: rustPlatform.buildRustPackage rec { pname = "git-cliff"; version = "2.0.4"; src = fetchFromGitHub { owner = "orhun"; repo = "git-cliff"; rev = "v${version}"; hash = "sha256-0ReMn37sYpS5uX9Nem7M9LthAvGNdJaAob+tEnjIrMw="; }; cargoHash = "sha256-xDIXXHoykEtRzWm5NDE1rcFgC4iFxhUPgwlvaoHmV6Y="; # attempts to run the program on .git in src which is not deterministic doCheck = false; buildInputs = lib.optionals stdenv.isDarwin [ Security SystemConfiguration ]; meta = with lib; { description = "A highly customizable Changelog Generator that follows Conventional Commit specifications"; homepage = "https://github.com/orhun/git-cliff"; changelog = "https://github.com/orhun/git-cliff/blob/v${version}/CHANGELOG.md"; license = licenses.gpl3Only; maintainers = with maintainers; [ siraben ]; }; }