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
28 lines
679 B
Nix
28 lines
679 B
Nix
{
|
|
lib,
|
|
rustPlatform,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage {
|
|
pname = "lipl";
|
|
version = "0.1.3-unstable-2022-08-23";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "yxdunc";
|
|
repo = "lipl";
|
|
rev = "6999da6de05abb5c9c4f6875debff6e3fd71ee79";
|
|
hash = "sha256-KN0yKhtDtlzELNUzR9fmP2mDPBJe1N+tawzI4FX/HSU=";
|
|
};
|
|
|
|
cargoHash = "sha256-TA/EP2CJceKNzPBV8K24Pyly1oj3tyIkpdPZJ9Zh81E=";
|
|
|
|
meta = with lib; {
|
|
description = "Command line tool to analyse the output over time of custom shell commands";
|
|
homepage = "https://github.com/yxdunc/lipl";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ figsoda ];
|
|
mainProgram = "lipl";
|
|
};
|
|
}
|