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
35 lines
783 B
Nix
35 lines
783 B
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
rustPlatform,
|
|
testers,
|
|
gitMinimal,
|
|
serie,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "serie";
|
|
version = "0.5.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "lusingander";
|
|
repo = "serie";
|
|
rev = "v${version}";
|
|
hash = "sha256-Pv9dCe3oGNDj6cRFaIBLCtGqnDHVBIbxxOo46a7OFSE=";
|
|
};
|
|
|
|
cargoHash = "sha256-oOH4OyeB1fevLH7KbEZo7XVWaT6wa3WCcVLsEvCrrD8=";
|
|
|
|
nativeCheckInputs = [ gitMinimal ];
|
|
|
|
passthru.tests.version = testers.testVersion { package = serie; };
|
|
|
|
meta = with lib; {
|
|
description = "Rich git commit graph in your terminal, like magic";
|
|
homepage = "https://github.com/lusingander/serie";
|
|
license = with licenses; [ mit ];
|
|
maintainers = with maintainers; [ matthiasbeyer ];
|
|
mainProgram = "serie";
|
|
};
|
|
}
|