Merge pull request #215619 from figsoda/lipl

lipl: init at 0.1.3
This commit is contained in:
figsoda 2023-02-10 20:55:14 -05:00 committed by GitHub
commit 9fb57a4022
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,25 @@
{ 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 ];
};
}

View file

@ -9514,6 +9514,8 @@ with pkgs;
linuxquota = callPackage ../tools/misc/linuxquota { }; linuxquota = callPackage ../tools/misc/linuxquota { };
lipl = callPackage ../tools/misc/lipl { };
liquidctl = with python3Packages; toPythonApplication liquidctl; liquidctl = with python3Packages; toPythonApplication liquidctl;
lmp = callPackage ../tools/security/lmp { }; lmp = callPackage ../tools/security/lmp { };