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 {
|
|
|
|
name = "pciutils-3.1.7";
|
2008-08-30 11:56:21 +02:00
|
|
|
|
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";
|
|
|
|
sha256 = "0i7mqf1fkmdqsawdk2badv6k3xrkryq0i2xknclvy6kcjsv27znq";
|
2007-02-19 21:18:20 +01:00
|
|
|
};
|
2008-08-30 11:56:21 +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.
|
2010-07-21 14:01:57 +02:00
|
|
|
url = http://nixos.org/tarballs/pci.ids.20100714.bz2;
|
|
|
|
sha256 = "0vll4svr60l6217yna7bfhcjm3prxr2b62ynq4jaagdp1rilfbap";
|
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";
|
|
|
|
|
|
|
|
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
|
|
|
}
|