diff --git a/pkgs/os-specific/linux/kudzu/default.nix b/pkgs/os-specific/linux/kudzu/default.nix new file mode 100644 index 000000000000..0571bbbbd017 --- /dev/null +++ b/pkgs/os-specific/linux/kudzu/default.nix @@ -0,0 +1,11 @@ +{stdenv, fetchurl, pciutils, python, popt, gettext}: + +stdenv.mkDerivation { + name = "kudzu-1.2.16"; + src = fetchurl { + url = http://losser.labs.cs.uu.nl/~armijn/.nix/kudzu-1.2.16.tar.gz; + md5 = "5fc786dd558064fd9c9cb3e5be10e799"; + }; + buildInputs = [pciutils python popt gettext]; + patches = [./kudzu-python.patch]; +} diff --git a/pkgs/os-specific/linux/kudzu/kudzu-python.patch b/pkgs/os-specific/linux/kudzu/kudzu-python.patch new file mode 100644 index 000000000000..7728ddb6e79a --- /dev/null +++ b/pkgs/os-specific/linux/kudzu/kudzu-python.patch @@ -0,0 +1,12 @@ +diff -ruN kudzu-1.2.16/Makefile kudzu-1.2.16.new/Makefile +--- kudzu-1.2.16/Makefile 2005-10-28 21:57:55.000000000 +0200 ++++ kudzu-1.2.16.new/Makefile 2005-12-23 16:30:37.000000000 +0100 +@@ -17,7 +17,7 @@ + + CVSTAG = kudzu-r$(subst .,-,$(VERSION)) + +-PYTHONVERS = $(shell ls /usr/include/python*/Python.h | sed "s|/usr/include/||g"| sed "s|/Python.h||g") ++PYTHONVERS = $(shell ls $(python)/include/python*/Python.h | sed "s|$(python)/include/||g"| sed "s|/Python.h||g") + + CFLAGS += -I. -DVERSION=\"$(VERSION)\" +