2010-07-21 14:01:57 +02:00
|
|
|
{ stdenv, fetchurl, zlib }:
|
2007-02-19 21:18:20 +01:00
|
|
|
|
2010-07-21 14:01:57 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2012-09-29 05:15:49 +02:00
|
|
|
name = "pciutils-3.1.10";
|
|
|
|
|
2007-02-19 21:18:20 +01:00
|
|
|
src = fetchurl {
|
2010-07-21 14:01:57 +02:00
|
|
|
url = "mirror://kernel/software/utils/pciutils/${name}.tar.bz2";
|
2012-09-29 05:15:49 +02:00
|
|
|
sha256 = "0xdahcxd00c921wnxi0f0w3lzjqdfphwa5vglfcpf0lv3l2w40pl";
|
2007-02-19 21:18:20 +01:00
|
|
|
};
|
2012-09-29 05:15:49 +02:00
|
|
|
|
2010-07-21 14:01:57 +02:00
|
|
|
buildInputs = [ zlib ];
|
2007-02-26 13:07:46 +01:00
|
|
|
|
|
|
|
pciids = fetchurl {
|
2009-03-10 13:25:45 +01:00
|
|
|
# Obtained from http://pciids.sourceforge.net/v2.2/pci.ids.bz2.
|
2012-09-29 05:15:49 +02:00
|
|
|
url = http://nixos.org/tarballs/pci.ids.20120929.bz2;
|
|
|
|
sha256 = "1q3i479ay88wam1zz1vbgkbqb2axg8av9qjxaigrqbnw2pv0srmb";
|
2008-08-30 11:56:21 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
# Override broken auto-detect logic.
|
2009-08-11 22:44:35 +02:00
|
|
|
# Note: we can't compress pci.ids (ZLIB=yes) because udev requires
|
|
|
|
# an uncompressed pci.ids.
|
|
|
|
makeFlags = "ZLIB=no DNS=yes SHARED=yes PREFIX=\${out}";
|
2009-03-10 13:25:45 +01:00
|
|
|
|
|
|
|
preBuild = ''
|
|
|
|
bunzip2 < $pciids > pci.ids
|
|
|
|
'';
|
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";
|
|
|
|
|
2008-08-30 11:56:21 +02:00
|
|
|
meta = {
|
|
|
|
homepage = http://mj.ucw.cz/pciutils.shtml;
|
|
|
|
description = "A collection of programs for inspecting and manipulating configuration of PCI devices";
|
2007-02-26 13:07:46 +01:00
|
|
|
};
|
2007-02-19 21:18:20 +01:00
|
|
|
}
|