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