686ce24904
GitOrigin-RevId: ac1f5b72a9e95873d1de0233fddcb56f99884b37
25 lines
605 B
Nix
25 lines
605 B
Nix
{ lib
|
|
, rustPlatform
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "lipl";
|
|
version = "0.1.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "yxdunc";
|
|
repo = "lipl";
|
|
rev = "v${version}";
|
|
hash = "sha256-ZeYz9g06vMsOk3YDmy0I+8e6BtLfweXqVH5uRt+mtes=";
|
|
};
|
|
|
|
cargoHash = "sha256-hcvC12dd6KDi7kYilXtBtyDQQG62YPMvSZA5trFqwWc=";
|
|
|
|
meta = with lib; {
|
|
description = "A 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 ];
|
|
};
|
|
}
|