3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/os-specific/linux/usbutils/default.nix

28 lines
694 B
Nix
Raw Normal View History

{ stdenv, fetchurl, substituteAll, autoreconfHook, pkgconfig, libusb1, hwdata }:
stdenv.mkDerivation rec {
name = "usbutils-010";
2012-09-29 04:09:34 +01:00
src = fetchurl {
2013-07-06 10:55:40 +01:00
url = "mirror://kernel/linux/utils/usb/usbutils/${name}.tar.xz";
sha256 = "06aag4jfgsfjxk563xsp9ik9nadihmasrr37a1gb0vwqni5kdiv1";
};
patches = [
(substituteAll {
src = ./fix-paths.patch;
inherit hwdata;
})
];
2012-09-29 04:09:34 +01:00
nativeBuildInputs = [ autoreconfHook pkgconfig ];
buildInputs = [ libusb1 ];
2018-08-30 21:00:16 +01:00
meta = with stdenv.lib; {
homepage = http://www.linux-usb.org/;
description = "Tools for working with USB devices, such as lsusb";
2018-08-30 21:00:16 +01:00
license = licenses.gpl2Plus;
platforms = platforms.linux;
};
}