2021-08-17 22:28:01 +00:00
|
|
|
{ lib, stdenv, fetchurl, substituteAll, autoreconfHook, pkg-config, libusb1, hwdata, python3 }:
|
2007-06-05 15:57:26 +00:00
|
|
|
|
2009-08-11 20:48:56 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2021-08-17 22:28:01 +00:00
|
|
|
pname = "usbutils";
|
|
|
|
version = "014";
|
2012-09-29 03:09:34 +00:00
|
|
|
|
2006-01-04 23:29:29 +00:00
|
|
|
src = fetchurl {
|
2021-08-17 22:28:01 +00:00
|
|
|
url = "mirror://kernel/linux/utils/usb/usbutils/usbutils-${version}.tar.xz";
|
2021-08-17 16:25:26 +00:00
|
|
|
sha256 = "sha256-Ogec+tYFYCJ7ZxkkgteBO/ljJvy7ZsBCVIOXFfJ2/Gk=";
|
2006-01-04 23:29:29 +00:00
|
|
|
};
|
2012-05-19 00:44:30 +00:00
|
|
|
|
2018-12-01 13:07:00 +00:00
|
|
|
patches = [
|
|
|
|
(substituteAll {
|
|
|
|
src = ./fix-paths.patch;
|
|
|
|
inherit hwdata;
|
|
|
|
})
|
|
|
|
];
|
2012-09-29 03:09:34 +00:00
|
|
|
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
2018-12-01 15:46:27 +00:00
|
|
|
buildInputs = [ libusb1 python3 ];
|
|
|
|
|
|
|
|
outputs = [ "out" "man" "python" ];
|
|
|
|
postInstall = ''
|
|
|
|
moveToOutput "bin/lsusb.py" "$python"
|
|
|
|
'';
|
2009-08-11 20:48:56 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "http://www.linux-usb.org/";
|
2009-08-11 20:48:56 +00:00
|
|
|
description = "Tools for working with USB devices, such as lsusb";
|
2021-08-17 22:28:01 +00:00
|
|
|
maintainers = with maintainers; [ ];
|
2018-08-30 20:00:16 +00:00
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
platforms = platforms.linux;
|
2009-08-11 20:48:56 +00:00
|
|
|
};
|
2006-01-04 23:29:29 +00:00
|
|
|
}
|