2013-07-06 12:34:17 +04:00
|
|
|
{ stdenv, fetchurl, pkgconfig, zlib, kmod, which }:
|
2007-02-19 23:18:20 +03:00
|
|
|
|
2010-07-21 16:01:57 +04:00
|
|
|
stdenv.mkDerivation rec {
|
2020-01-27 16:15:09 +03:00
|
|
|
name = "pciutils-3.6.4"; # with release-date database
|
2012-09-29 07:15:49 +04:00
|
|
|
|
2007-02-19 23:18:20 +03:00
|
|
|
src = fetchurl {
|
2014-11-10 22:16:16 +03:00
|
|
|
url = "mirror://kernel/software/utils/pciutils/${name}.tar.xz";
|
2020-01-27 16:15:09 +03:00
|
|
|
sha256 = "0mb0f2phdcmp4kfiqsszn2k6nlln0w160ffzrjjv4bbfjwrgfzzn";
|
2007-02-19 23:18:20 +03:00
|
|
|
};
|
2012-09-29 07:15:49 +04:00
|
|
|
|
2017-09-06 00:26:13 +03:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ zlib kmod which ];
|
2008-08-30 13:56:21 +04:00
|
|
|
|
2018-05-20 00:44:17 +03:00
|
|
|
makeFlags = [
|
|
|
|
"SHARED=yes"
|
|
|
|
"PREFIX=\${out}"
|
|
|
|
"STRIP="
|
|
|
|
"HOST=${stdenv.hostPlatform.system}"
|
|
|
|
"CROSS_COMPILE=${stdenv.cc.targetPrefix}"
|
|
|
|
"DNS=yes"
|
|
|
|
];
|
2008-08-30 13:56:21 +04:00
|
|
|
|
2019-11-04 01:10:08 +03:00
|
|
|
installTargets = [ "install" "install-lib" ];
|
2008-08-30 13:56:21 +04:00
|
|
|
|
2012-09-29 07:15:49 +04: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 22:16:16 +03:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = http://mj.ucw.cz/pciutils.html;
|
2008-08-30 13:56:21 +04:00
|
|
|
description = "A collection of programs for inspecting and manipulating configuration of PCI devices";
|
2014-11-10 22:16:16 +03:00
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = [ maintainers.vcunat ]; # not really, but someone should watch it
|
2007-02-26 15:07:46 +03:00
|
|
|
};
|
2007-02-19 23:18:20 +03:00
|
|
|
}
|