56 lines
1.3 KiB
Nix
56 lines
1.3 KiB
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
rustPlatform,
|
|
versionCheckHook,
|
|
nix-update-script,
|
|
git,
|
|
}:
|
|
let
|
|
version = "1.1.11";
|
|
in
|
|
rustPlatform.buildRustPackage {
|
|
pname = "committed";
|
|
inherit version;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "crate-ci";
|
|
repo = "committed";
|
|
tag = "v${version}";
|
|
hash = "sha256-6uWiZRvR7QszZQbGwo+fPbKtr+wsIHVl6iomODz2cu0=";
|
|
};
|
|
|
|
cargoHash = "sha256-qV5WaszJ/VeC6XkgBim3IRmDCU7ieAIGl7Vr5t1F8Ow=";
|
|
|
|
nativeCheckInputs = [
|
|
git
|
|
];
|
|
|
|
# Ensure libgit2 can read user.name and user.email for `git_signature_default`.
|
|
# https://github.com/crate-ci/committed/blob/v1.1.5/crates/committed/tests/cmd.rs#L126
|
|
preCheck = ''
|
|
export HOME=$(mktemp -d)
|
|
git config --global user.name nobody
|
|
git config --global user.email no@where
|
|
'';
|
|
|
|
nativeInstallCheckInputs = [ versionCheckHook ];
|
|
doInstallCheck = true;
|
|
|
|
passthru = {
|
|
updateScript = nix-update-script { };
|
|
};
|
|
|
|
meta = {
|
|
homepage = "https://github.com/crate-ci/committed";
|
|
changelog = "https://github.com/crate-ci/committed/blob/v${version}/CHANGELOG.md";
|
|
description = "Nitpicking commit history since beabf39";
|
|
mainProgram = "committed";
|
|
license = [
|
|
lib.licenses.asl20 # or
|
|
lib.licenses.mit
|
|
];
|
|
maintainers = [ lib.maintainers.pigeonf ];
|
|
};
|
|
}
|