2021-01-19 06:50:56 +00:00
|
|
|
{ lib, stdenv, fetchurl, substituteAll, autoreconfHook, pkg-config, libusb1, hwdata , python3 }:
|
2007-06-05 16:57:26 +01:00
|
|
|
|
2009-08-11 21:48:56 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-05-13 11:45:34 +01:00
|
|
|
name = "usbutils-012";
|
2012-09-29 04:09:34 +01:00
|
|
|
|
2006-01-04 23:29:29 +00:00
|
|
|
src = fetchurl {
|
2013-07-06 10:55:40 +01:00
|
|
|
url = "mirror://kernel/linux/utils/usb/usbutils/${name}.tar.xz";
|
2019-05-13 11:45:34 +01:00
|
|
|
sha256 = "0iiy0q7fzikavmdsjsb0sl9kp3gfh701qwyjjccvqh0qz4jlcqw8";
|
2006-01-04 23:29:29 +00:00
|
|
|
};
|
2012-05-19 01:44:30 +01:00
|
|
|
|
2018-12-01 13:07:00 +00:00
|
|
|
patches = [
|
|
|
|
(substituteAll {
|
|
|
|
src = ./fix-paths.patch;
|
|
|
|
inherit hwdata;
|
|
|
|
})
|
|
|
|
];
|
2012-09-29 04:09:34 +01: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 21:48:56 +01:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://www.linux-usb.org/";
|
2009-08-11 21:48:56 +01:00
|
|
|
description = "Tools for working with USB devices, such as lsusb";
|
2018-08-30 21:00:16 +01:00
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
platforms = platforms.linux;
|
2009-08-11 21:48:56 +01:00
|
|
|
};
|
2006-01-04 23:29:29 +00:00
|
|
|
}
|