9bb3fccb5b
continuation of #109595 pkgconfig was aliased in 2018, however, it remained in all-packages.nix due to its wide usage. This cleans up the remaining references to pkgs.pkgsconfig and moves the entry to aliases.nix. python3Packages.pkgconfig remained unchanged because it's the canonical name of the upstream package on pypi.
33 lines
820 B
Nix
33 lines
820 B
Nix
{ lib, stdenv, fetchurl, substituteAll, autoreconfHook, pkg-config, 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 pkg-config ];
|
|
buildInputs = [ libusb1 python3 ];
|
|
|
|
outputs = [ "out" "man" "python" ];
|
|
postInstall = ''
|
|
moveToOutput "bin/lsusb.py" "$python"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "http://www.linux-usb.org/";
|
|
description = "Tools for working with USB devices, such as lsusb";
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|