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