blob: e87cfe6c36ee7c116c47700a73fdc58ba21af1cb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
{
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 = {
description = "Command line tool to analyse the output over time of custom shell commands";
homepage = "https://github.com/yxdunc/lipl";
license = lib.licenses.mit;
maintainers = [ ];
mainProgram = "lipl";
};
}
|