nixpkgs/pkgs/os-specific/linux/kudzu/default.nix
Armijn Hemel 7e6f127abb fix python includes
svn path=/nixpkgs/trunk/; revision=4419
2005-12-23 18:56:33 +00:00

14 lines
373 B
Nix

{stdenv, fetchurl, pciutils, python, popt, gettext}:
stdenv.mkDerivation {
name = "kudzu-1.2.16";
builder = ./builder.sh;
src = fetchurl {
url = http://losser.labs.cs.uu.nl/~armijn/.nix/kudzu-1.2.16.tar.gz;
md5 = "5fc786dd558064fd9c9cb3e5be10e799";
};
buildInputs = [pciutils python popt gettext];
inherit python;
patches = [./kudzu-python.patch];
}