nixpkgs/pkgs/os-specific/linux/usbutils/default.nix
R. RyanTM d1419b9df0 usbutils: 010 -> 012
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/usbutils/versions
2019-05-14 09:48:45 +02:00

33 lines
818 B
Nix

{ stdenv, fetchurl, substituteAll, autoreconfHook, pkgconfig, libusb1, hwdata , python3 }:
stdenv.mkDerivation rec {
name = "usbutils-012";
src = fetchurl {
url = "mirror://kernel/linux/utils/usb/usbutils/${name}.tar.xz";
sha256 = "0iiy0q7fzikavmdsjsb0sl9kp3gfh701qwyjjccvqh0qz4jlcqw8";
};
patches = [
(substituteAll {
src = ./fix-paths.patch;
inherit hwdata;
})
];
nativeBuildInputs = [ autoreconfHook pkgconfig ];
buildInputs = [ libusb1 python3 ];
outputs = [ "out" "man" "python" ];
postInstall = ''
moveToOutput "bin/lsusb.py" "$python"
'';
meta = with stdenv.lib; {
homepage = http://www.linux-usb.org/;
description = "Tools for working with USB devices, such as lsusb";
license = licenses.gpl2Plus;
platforms = platforms.linux;
};
}