bandwhich: remove with lib from meta

This commit is contained in:
Noa Aarts 2024-11-18 12:43:06 +01:00 committed by Weijia Wang
parent 2d42c0c54c
commit 21af19c460

View File

@ -41,7 +41,7 @@ rustPlatform.buildRustPackage rec {
--zsh $BANDWHICH_GEN_DIR/_bandwhich
'';
meta = with lib; {
meta = {
description = "CLI utility for displaying current network utilization";
longDescription = ''
bandwhich sniffs a given network interface and records IP packet size, cross
@ -52,12 +52,12 @@ rustPlatform.buildRustPackage rec {
'';
homepage = "https://github.com/imsnif/bandwhich";
changelog = "https://github.com/imsnif/bandwhich/blob/${src.rev}/CHANGELOG.md";
license = licenses.mit;
maintainers = with maintainers; [
license = lib.licenses.mit;
maintainers = with lib.maintainers; [
Br1ght0ne
figsoda
];
platforms = platforms.unix;
platforms = lib.platforms.unix;
mainProgram = "bandwhich";
};
}