nixpkgs/pkgs/tools/misc/lipl/default.nix
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00

32 lines
717 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=";
};
cargoLock = {
lockFile = ./Cargo.lock;
outputHashes = {
"cmd_lib-0.7.8" = "sha256-FyJZkxhKwHyGEmeLZfcvLe1D6h7XY5tvsHbANQk+D+4=";
};
};
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";
};
}