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

25 lines
624 B
Nix
Raw Normal View History

2015-03-26 19:00:00 +00:00
{ stdenv, fetchurl, pkgconfig, libusb1, hwdata }:
stdenv.mkDerivation rec {
2015-03-26 19:00:00 +00:00
name = "usbutils-008";
2012-09-29 03:09:34 +00:00
src = fetchurl {
2013-07-06 09:55:40 +00:00
url = "mirror://kernel/linux/utils/usb/usbutils/${name}.tar.xz";
2015-03-26 19:00:00 +00:00
sha256 = "132clk14j4nm8crln2jymdbbc2vhzar2j2hnxyh05m79pbq1lx24";
};
2012-09-29 03:09:34 +00:00
buildInputs = [ pkgconfig libusb1 ];
postInstall =
''
substituteInPlace $out/bin/lsusb.py \
2015-03-26 19:00:00 +00:00
--replace /usr/share/usb.ids ${hwdata}/data/hwdata/usb.ids
'';
meta = {
homepage = http://www.linux-usb.org/;
description = "Tools for working with USB devices, such as lsusb";
platforms = stdenv.lib.platforms.linux;
};
}