* Adde xpra. Doesn't quite work yet.

* Removed python_alts.

svn path=/nixpkgs/trunk/; revision=11161
This commit is contained in:
Eelco Dolstra
2008-03-17 13:45:50 +00:00
parent a47057c615
commit 26a152653d
9 changed files with 114 additions and 37 deletions
@@ -0,0 +1,26 @@
args: with args;
let
localDefs = builderDefs {
src = fetchurl {
url = http://www.cosc.canterbury.ac.nz/greg.ewing/python/Pyrex/oldtar/Pyrex-0.9.5.1.1.tar.gz;
sha256 = "0lxxvn4mjfb83swcbqb5908q4iy53w4ip5i0f9angm2va1jyhd3z";
};
buildInputs = [python];
} null; /* null is a terminator for sumArgs */
in with localDefs;
stdenv.mkDerivation rec {
name = "pyrex-0.9.5.1.1";
builder = writeScript (name + "-builder")
(textClosure localDefs [installPythonPackage doForceShare]);
meta = {
description = "Python package compiler or something like that";
inherit src;
};
}