nixpkgs/pkgs/development/libraries/pciutils/default.nix
Armijn Hemel 9a3162f1ff rip a patch from the Fedora RPM. This is needed to let kudzu compile...
svn path=/nixpkgs/trunk/; revision=4417
2005-12-23 15:26:05 +00:00

12 lines
316 B
Nix

{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "pciutils-2.2.1";
builder = ./builder.sh;
src = fetchurl {
url = ftp://ftp.kernel.org/pub/software/utils/pciutils/pciutils-2.2.1.tar.bz2;
md5 = "483a08dc864ec42497ad95310bb1a8ee";
};
patches = [./pciutils-path.patch ./pciutils-devicetype.patch];
}