usbview: init at 2.0 (#116450)
This commit is contained in:
parent
03eb6426af
commit
e53281a59b
|
@ -0,0 +1,36 @@
|
||||||
|
{ lib
|
||||||
|
, stdenv
|
||||||
|
, fetchFromGitHub
|
||||||
|
, autoreconfHook
|
||||||
|
, pkg-config
|
||||||
|
, gtk3
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "usbview";
|
||||||
|
version = "2.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "gregkh";
|
||||||
|
repo = "usbview";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "1cw5jjpidjn34rxdjslpdlj99k4dqaq1kz6mplv5hgjdddijvn5p";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
autoreconfHook
|
||||||
|
pkg-config
|
||||||
|
];
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
gtk3
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "USB viewer for Linux";
|
||||||
|
license = licenses.gpl2Only;
|
||||||
|
homepage = "http://www.kroah.com/linux-usb/";
|
||||||
|
maintainers = with maintainers; [ shamilton ];
|
||||||
|
platforms = platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
|
@ -3325,6 +3325,8 @@ in
|
||||||
|
|
||||||
usbsdmux = callPackage ../development/tools/misc/usbsdmux { };
|
usbsdmux = callPackage ../development/tools/misc/usbsdmux { };
|
||||||
|
|
||||||
|
usbview = callPackage ../tools/misc/usbview { };
|
||||||
|
|
||||||
anthy = callPackage ../tools/inputmethods/anthy { };
|
anthy = callPackage ../tools/inputmethods/anthy { };
|
||||||
|
|
||||||
evdevremapkeys = callPackage ../tools/inputmethods/evdevremapkeys { };
|
evdevremapkeys = callPackage ../tools/inputmethods/evdevremapkeys { };
|
||||||
|
|
Loading…
Reference in New Issue