nixpkgs/pkgs/development/libraries/pciutils/default.nix

12 lines
301 B
Nix
Raw Normal View History

{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "pciutils-2.2.1";
builder = ./builder.sh;
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/pciutils-2.2.1.tar.bz2;
md5 = "483a08dc864ec42497ad95310bb1a8ee";
};
patches = [./pciutils-path.patch ./pciutils-devicetype.patch];
}