usbtop: init at 1.0
This commit is contained in:
parent
3b67af56d7
commit
93a27dbe9f
26
pkgs/os-specific/linux/usbtop/default.nix
Normal file
26
pkgs/os-specific/linux/usbtop/default.nix
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{ stdenv, fetchFromGitHub
|
||||||
|
, cmake
|
||||||
|
, libpcap, boost }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "usbtop";
|
||||||
|
version = "1.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "aguinet";
|
||||||
|
repo = pname;
|
||||||
|
rev = "release-${version}";
|
||||||
|
sha256 = "0qbad0aq6j4jrh90l6a0akk71wdzhyzmy6q8wl138axyj2bp9kss";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ cmake ];
|
||||||
|
buildInputs = [ libpcap boost ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = "https://github.com/aguinet/usbtop";
|
||||||
|
description = "A top utility that shows an estimated instantaneous bandwidth on USB buses and devices";
|
||||||
|
maintainers = with maintainers; [ etu ];
|
||||||
|
license = licenses.bsd3;
|
||||||
|
platforms = platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
@ -16494,6 +16494,8 @@ in
|
|||||||
withGui = false;
|
withGui = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
usbtop = callPackage ../os-specific/linux/usbtop { };
|
||||||
|
|
||||||
usbutils = callPackage ../os-specific/linux/usbutils { };
|
usbutils = callPackage ../os-specific/linux/usbutils { };
|
||||||
|
|
||||||
usermount = callPackage ../os-specific/linux/usermount { };
|
usermount = callPackage ../os-specific/linux/usermount { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user