eb11feaa0b
Changes the default fetcher in the Rust Platform to be the newer `fetchCargoTarball`, and changes every application using the current default to instead opt out. This commit does not change any hashes or cause any rebuilds. Once integrated, we will start deleting the opt-outs and recomputing hashes. See #79975 for details.
36 lines
1.2 KiB
Nix
36 lines
1.2 KiB
Nix
{ stdenv, fetchFromGitHub, rustPlatform, Security }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "bandwhich";
|
|
version = "0.11.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "imsnif";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "1c4lndrr7xndgp60zcdjqpciwibm9sjwwrd3921fyz4jg44g76zy";
|
|
};
|
|
|
|
# Delete this on next update; see #79975 for details
|
|
legacyCargoFetcher = true;
|
|
|
|
cargoSha256 = "1sa81570cvvpqgdcpnb08b0q4c6ap8a2wxfp2z336jzbv0zgv8a6";
|
|
|
|
buildInputs = stdenv.lib.optional stdenv.isDarwin Security;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A CLI utility for displaying current network utilization";
|
|
longDescription = ''
|
|
bandwhich sniffs a given network interface and records IP packet size, cross
|
|
referencing it with the /proc filesystem on linux or lsof on MacOS. It is
|
|
responsive to the terminal window size, displaying less info if there is
|
|
no room for it. It will also attempt to resolve ips to their host name in
|
|
the background using reverse DNS on a best effort basis.
|
|
'';
|
|
homepage = "https://github.com/imsnif/bandwhich";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ filalex77 ma27 ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|