2018-12-01 13:07:00 +00:00
|
|
|
{ stdenv, fetchurl, substituteAll, autoreconfHook, pkgconfig, libusb1, hwdata }:
|
2007-06-05 15:57:26 +00:00
|
|
|
|
2009-08-11 20:48:56 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2018-05-17 23:23:42 +00:00
|
|
|
name = "usbutils-010";
|
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";
|
2018-05-17 23:23:42 +00:00
|
|
|
sha256 = "06aag4jfgsfjxk563xsp9ik9nadihmasrr37a1gb0vwqni5kdiv1";
|
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 ];
|
|
|
|
buildInputs = [ libusb1 ];
|
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
|
|
|
}
|