nixpkgs/pkgs/os-specific/linux/usbutils/default.nix

27 lines
691 B
Nix
Raw Normal View History

2015-03-26 19:00:00 +00:00
{ stdenv, fetchurl, 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";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ libusb1 ];
2012-09-29 04:09:34 +01:00
postInstall =
''
substituteInPlace $out/bin/lsusb.py \
2018-10-26 20:20:27 +01:00
--replace /usr/share/usb.ids ${hwdata}/share/hwdata/usb.ids
'';
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;
};
}