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

33 lines
820 B
Nix
Raw Normal View History

{ stdenv, fetchurl, substituteAll, autoreconfHook, pkgconfig, libusb1, hwdata , python3 }:
stdenv.mkDerivation rec {
name = "usbutils-012";
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";
sha256 = "0iiy0q7fzikavmdsjsb0sl9kp3gfh701qwyjjccvqh0qz4jlcqw8";
};
patches = [
(substituteAll {
src = ./fix-paths.patch;
inherit hwdata;
})
];
2012-09-29 03:09:34 +00:00
nativeBuildInputs = [ autoreconfHook pkgconfig ];
buildInputs = [ libusb1 python3 ];
outputs = [ "out" "man" "python" ];
postInstall = ''
moveToOutput "bin/lsusb.py" "$python"
'';
2018-08-30 20:00:16 +00:00
meta = with stdenv.lib; {
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;
};
}