Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
67 lines
1.7 KiB
Nix
67 lines
1.7 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
rustPlatform,
|
|
versionCheckHook,
|
|
nix-update-script,
|
|
git,
|
|
libz,
|
|
}:
|
|
let
|
|
version = "1.1.7";
|
|
in
|
|
rustPlatform.buildRustPackage {
|
|
pname = "committed";
|
|
inherit version;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "crate-ci";
|
|
repo = "committed";
|
|
tag = "v${version}";
|
|
hash = "sha256-8Np7kSLSoZCytQ9RN+kRzUlQa8Lj9F70hbbYNfdgQKI=";
|
|
};
|
|
|
|
cargoHash = "sha256-gmB2NXxoD9xc24avjWyEFihVVZN1rPggOGwXz/gaZ1c=";
|
|
|
|
buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [
|
|
# Until upstream bumps the libz-sys dependency to >= 1.1.15 the build fails on unstable
|
|
# nixpkgs with macOS, because the following commit is not part of libz-sys < 1.1.15:
|
|
# https://github.com/madler/zlib/commit/4bd9a71f3539b5ce47f0c67ab5e01f3196dc8ef9
|
|
# Instead, use the nixpkgs libz so that libz-sys does not have to be built.
|
|
libz
|
|
];
|
|
|
|
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 ];
|
|
versionCheckProgramArg = "--version";
|
|
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 ];
|
|
};
|
|
}
|