Added ViewMTN and dependency; currently ViewMTN has to be manually symlinked in corresponding directory.

svn path=/nixpkgs/trunk/; revision=12060
This commit is contained in:
Michael Raskin
2008-06-12 15:59:59 +00:00
parent 638f4bf121
commit 0784550c35
7 changed files with 138 additions and 4 deletions

View File

@@ -0,0 +1,18 @@
args : with args;
rec {
src = fetchurl {
url = http://www.saddi.com/software/flup/dist/flup-r2311.tar.gz;
sha256 = "15wyn6d6wla1ag91yxmlh9b4m0w1i0c2lm8ka4qfv4ijqcqakdx3";
};
buildInputs = [python setuptools];
configureFlags = [];
/* doConfigure should be specified separately */
phaseNames = ["addInputs" "createPythonInstallationTarget" (doDump "0") "installPythonPackage"];
name = "flup-" + version;
meta = {
description = "FastCGI Python module set";
};
}

View File

@@ -0,0 +1,19 @@
args : with args;
rec {
src = fetchurl {
url = http://pypi.python.org/packages/source/s/setuptools/setuptools-0.6c8.tar.gz;
sha256 = "0dry431lkaqqmgvka0rhnw54ljf1yx0npzh7r81z2ylcrn27lrln";
};
buildInputs = [python];
configureFlags = [];
/* doConfigure should be specified separately */
phaseNames = ["createPythonInstallationTarget" "installPythonPackage"];
name = "setuptools-" + version;
meta = {
description = "Installation utilities for Python packages";
};
}