mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-10 19:55:41 +03:00
changelogging: init at 0.7.0
This commit is contained in:
parent
30d3f9efff
commit
3ad21240eb
1 changed files with 36 additions and 0 deletions
36
pkgs/by-name/ch/changelogging/package.nix
Normal file
36
pkgs/by-name/ch/changelogging/package.nix
Normal file
|
@ -0,0 +1,36 @@
|
|||
{
|
||||
lib,
|
||||
fetchCrate,
|
||||
rustPlatform,
|
||||
versionCheckHook,
|
||||
nix-update-script,
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "changelogging";
|
||||
version = "0.7.0";
|
||||
|
||||
src = fetchCrate {
|
||||
inherit pname version;
|
||||
hash = "sha256-orTUCBHacD0MQNfhOUWdh9RxT/9YNvgfCHFDr2eNQic=";
|
||||
};
|
||||
|
||||
cargoHash = "sha256-2uYNwKjD0vX+C2Sj2epyTqe4sMqPa7cwVwoUHs3vtQE=";
|
||||
|
||||
useFetchCargoVendor = true;
|
||||
|
||||
passthru.updateScript = nix-update-script { };
|
||||
|
||||
nativeInstallCheckInputs = [ versionCheckHook ];
|
||||
doInstallCheck = true;
|
||||
|
||||
meta = {
|
||||
description = "CLI tool for building changelogs from fragments";
|
||||
homepage = "https://github.com/nekitdev/changelogging";
|
||||
changelog = "https://github.com/nekitdev/changelogging/releases/tag/v${version}";
|
||||
platforms = lib.platforms.all;
|
||||
license = lib.licenses.mit;
|
||||
maintainers = [ lib.maintainers.nekitdev ];
|
||||
mainProgram = "changelogging";
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue