2018-12-01 14:07:00 +01:00
|
|
|
{ stdenv, fetchurl, substituteAll, autoreconfHook, pkgconfig, libusb1, hwdata }:
|
2007-06-05 17:57:26 +02:00
|
|
|
|
2009-08-11 22:48:56 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2018-05-18 01:23:42 +02:00
|
|
|
name = "usbutils-010";
|
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";
|
2018-05-18 01:23:42 +02:00
|
|
|
sha256 = "06aag4jfgsfjxk563xsp9ik9nadihmasrr37a1gb0vwqni5kdiv1";
|
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
|
|
|
|
2018-12-01 14:07:00 +01:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
|
|
|
buildInputs = [ libusb1 ];
|
2009-08-11 22:48:56 +02:00
|
|
|
|
2018-08-30 22:00:16 +02:00
|
|
|
meta = with stdenv.lib; {
|
2009-08-11 22:48:56 +02:00
|
|
|
homepage = http://www.linux-usb.org/;
|
|
|
|
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
|
|
|
}
|