2005-12-23 16:03:01 +01:00
|
|
|
{stdenv, fetchurl}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "pciutils-2.2.1";
|
|
|
|
builder = ./builder.sh;
|
|
|
|
src = fetchurl {
|
2006-01-30 17:04:03 +01:00
|
|
|
url = http://nix.cs.uu.nl/dist/tarballs/pciutils-2.2.1.tar.bz2;
|
2005-12-23 16:03:01 +01:00
|
|
|
md5 = "483a08dc864ec42497ad95310bb1a8ee";
|
|
|
|
};
|
2005-12-23 16:26:05 +01:00
|
|
|
patches = [./pciutils-path.patch ./pciutils-devicetype.patch];
|
2005-12-23 16:03:01 +01:00
|
|
|
}
|