nixpkgs/pkgs/tools/system/pciutils/default.nix
Benjamin Staffin e385ca7ede
pciutils: build with dns query support
This enables `lspci -q` to look up unknown PCI IDs via DNS queries
without needing the `update-pciids` script that the derivation doesn't
include.
2018-05-19 17:51:51 -04:00

36 lines
1.0 KiB
Nix

{ stdenv, fetchurl, pkgconfig, zlib, kmod, which }:
stdenv.mkDerivation rec {
name = "pciutils-3.5.6"; # with database from 2017-07
src = fetchurl {
url = "mirror://kernel/software/utils/pciutils/${name}.tar.xz";
sha256 = "08dvsk1b5m1r7qqzsm849h4glq67mngf8zw7bg0102ff1jwywipk";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ zlib kmod which ];
makeFlags = [
"SHARED=yes"
"PREFIX=\${out}"
"STRIP="
"HOST=${stdenv.hostPlatform.system}"
"CROSS_COMPILE=${stdenv.cc.targetPrefix}"
"DNS=yes"
];
installTargets = "install install-lib";
# Get rid of update-pciids as it won't work.
postInstall = "rm $out/sbin/update-pciids $out/man/man8/update-pciids.8";
meta = with stdenv.lib; {
homepage = http://mj.ucw.cz/pciutils.html;
description = "A collection of programs for inspecting and manipulating configuration of PCI devices";
license = licenses.gpl2Plus;
platforms = platforms.unix;
maintainers = [ maintainers.vcunat ]; # not really, but someone should watch it
};
}