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