Added xxdiff

svn path=/nixpkgs/trunk/; revision=11888
This commit is contained in:
Michael Raskin
2008-05-25 20:43:56 +00:00
parent 5e6eafa332
commit 82177d1bc2
6 changed files with 132 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
args : with args;
rec {
src = fetchurl {
url = http://ftp.de.debian.org/debian/pool/main/s/sip4-qt3/sip4-qt3_4.7.4.orig.tar.gz;
sha256 = "0g518b26346q9b0lm13rsgdbq14r4nckyjbf209ylakwx6zir4l5";
};
buildInputs = [python];
configureFlags = [ '' -e "$prefix/include/python$pythonVersion" ''];
/* doConfigure should be specified separately */
phaseNames = ["doPythonConfigure" "doMakeInstall"];
name = "python-sip-" + version;
meta = {
description = "Python/C++ bindings generator";
};
}