2020-08-31 23:10:34 -07:00
|
|
|
{ stdenv, fetchurl, pkgconfig, zlib, kmod, which
|
|
|
|
, static ? stdenv.targetPlatform.isStatic
|
|
|
|
}:
|
2007-02-19 12:18:20 -08:00
|
|
|
|
2010-07-21 05:01:57 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2020-06-10 13:20:53 -07:00
|
|
|
name = "pciutils-3.7.0"; # with release-date database
|
2012-09-28 20:15:49 -07:00
|
|
|
|
2007-02-19 12:18:20 -08:00
|
|
|
src = fetchurl {
|
2014-11-10 11:16:16 -08:00
|
|
|
url = "mirror://kernel/software/utils/pciutils/${name}.tar.xz";
|
2020-06-10 13:20:53 -07:00
|
|
|
sha256 = "1ss0rnfsx8gvqjxaji4mvbhf9xyih4cadmgadbwwv8mnx1xvjh4x";
|
2007-02-19 12:18:20 -08:00
|
|
|
};
|
2012-09-28 20:15:49 -07:00
|
|
|
|
2017-09-05 14:26:13 -07:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ zlib kmod which ];
|
2008-08-30 02:56:21 -07:00
|
|
|
|
2018-05-19 14:44:17 -07:00
|
|
|
makeFlags = [
|
2020-08-31 23:10:34 -07:00
|
|
|
"SHARED=${if static then "no" else "yes"}"
|
2018-05-19 14:44:17 -07:00
|
|
|
"PREFIX=\${out}"
|
|
|
|
"STRIP="
|
|
|
|
"HOST=${stdenv.hostPlatform.system}"
|
|
|
|
"CROSS_COMPILE=${stdenv.cc.targetPrefix}"
|
|
|
|
"DNS=yes"
|
|
|
|
];
|
2008-08-30 02:56:21 -07:00
|
|
|
|
2019-11-03 14:10:08 -08:00
|
|
|
installTargets = [ "install" "install-lib" ];
|
2008-08-30 02:56:21 -07:00
|
|
|
|
2012-09-28 20:15:49 -07:00
|
|
|
# Get rid of update-pciids as it won't work.
|
|
|
|
postInstall = "rm $out/sbin/update-pciids $out/man/man8/update-pciids.8";
|
|
|
|
|
2014-11-10 11:16:16 -08:00
|
|
|
meta = with stdenv.lib; {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "http://mj.ucw.cz/pciutils.html";
|
2008-08-30 02:56:21 -07:00
|
|
|
description = "A collection of programs for inspecting and manipulating configuration of PCI devices";
|
2014-11-10 11:16:16 -08:00
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = [ maintainers.vcunat ]; # not really, but someone should watch it
|
2007-02-26 04:07:46 -08:00
|
|
|
};
|
2007-02-19 12:18:20 -08:00
|
|
|
}
|