34 lines
1,011 B
Nix
34 lines
1,011 B
Nix
{ stdenv, fetchurl, pkgconfig, zlib, kmod, which }:
|
|
|
|
let
|
|
pciids = fetchurl {
|
|
# Obtained from http://pciids.sourceforge.net/v2.2/pci.ids.bz2.
|
|
url = http://tarballs.nixos.org/pci.ids.20131006.bz2;
|
|
sha256 = "1vmshcgxqminiyh52pdcak24lm24qlic49py9cmkp96y1s48lvsc";
|
|
};
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
name = "pciutils-3.2.1"; # with database from 2013-11-10
|
|
|
|
src = fetchurl {
|
|
url = "mirror://kernel/software/utils/pciutils/${name}.tar.bz2";
|
|
sha256 = "1pnwwc4sq0q7zz3mw2rsrc9j5rxwpdvxirqjmxcd0brf0hcjpm8j";
|
|
};
|
|
|
|
buildInputs = [ pkgconfig zlib kmod which ];
|
|
|
|
#preBuild = "bunzip2 < ${pciids} > pci.ids";
|
|
|
|
makeFlags = "SHARED=yes PREFIX=\${out}";
|
|
|
|
installTargets = "install install-lib";
|
|
|
|
# Get rid of update-pciids as it won't work.
|
|
postInstall = "rm $out/sbin/update-pciids $out/man/man8/update-pciids.8";
|
|
|
|
meta = {
|
|
homepage = http://mj.ucw.cz/pciutils.shtml;
|
|
description = "A collection of programs for inspecting and manipulating configuration of PCI devices";
|
|
};
|
|
}
|