initial commit after reorganisation

This commit is contained in:
2024-01-31 23:50:43 +01:00
commit 455e7f84c0
31 changed files with 3574 additions and 0 deletions

View File

@ -0,0 +1,26 @@
{
lib,
fetchFromGitHub,
rustPlatform,
...
}:
rustPlatform.buildRustPackage rec {
pname = "git-cliff";
version = "1.1.2";
src = fetchFromGitHub {
owner = "orhun";
repo = pname;
rev = "v${version}";
hash = "sha256-QYldwxQYod5qkNC3soiKoCLDFR4UaLxdGkVufn1JIeE=";
};
doCheck = false;
cargoHash = "sha256-jwDJb9Hl0PegCufmaj1Q3h5itgt26E4dwmcyCxZ+4FM=";
meta = with lib; {
description = "A highly customizable Changelog Generator that follows Conventional Commit specifications";
homepage = "https://github.com/orhun/git-cliff";
};
}