mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-15 06:17:52 +00:00
bandwhich: remove with lib
from meta
This commit is contained in:
parent
2d42c0c54c
commit
21af19c460
@ -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";
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user