2018-12-01 15:46:27 +00:00
|
|
|
{ stdenv, fetchurl, substituteAll, autoreconfHook, pkgconfig, libusb1, hwdata , python3 }:
|
2007-06-05 15:57:26 +00:00
|
|
|
|
2009-08-11 20:48:56 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-05-13 10:45:34 +00:00
|
|
|
name = "usbutils-012";
|
2012-09-29 03:09:34 +00:00
|
|
|
|
2006-01-04 23:29:29 +00:00
|
|
|
src = fetchurl {
|
2013-07-06 09:55:40 +00:00
|
|
|
url = "mirror://kernel/linux/utils/usb/usbutils/${name}.tar.xz";
|
2019-05-13 10:45:34 +00:00
|
|
|
sha256 = "0iiy0q7fzikavmdsjsb0sl9kp3gfh701qwyjjccvqh0qz4jlcqw8";
|
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
|
|
|
|
2018-12-01 13:07:00 +00:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
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
|
|
|
|
2018-08-30 20:00:16 +00:00
|
|
|
meta = with stdenv.lib; {
|
2009-08-11 20:48:56 +00:00
|
|
|
homepage = http://www.linux-usb.org/;
|
|
|
|
description = "Tools for working with USB devices, such as lsusb";
|
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
|
|
|
}
|