summary refs log tree commit diff
path: root/pkgs/development/interpreters/pyrex/0.9.6.nix
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2008-03-17 13:45:50 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2008-03-17 13:45:50 +0000
commit26a152653db6f04752aeabb99600f5aa8d834bf5 (patch)
tree9f8b8de6b97932bde78ab9169794fecc8f41bdab /pkgs/development/interpreters/pyrex/0.9.6.nix
parenta47057c615cda385fb275a8c0d69053f9913115b (diff)
downloadnixpkgs-26a152653db6f04752aeabb99600f5aa8d834bf5.tar
nixpkgs-26a152653db6f04752aeabb99600f5aa8d834bf5.tar.gz
nixpkgs-26a152653db6f04752aeabb99600f5aa8d834bf5.tar.bz2
nixpkgs-26a152653db6f04752aeabb99600f5aa8d834bf5.tar.lz
nixpkgs-26a152653db6f04752aeabb99600f5aa8d834bf5.tar.xz
nixpkgs-26a152653db6f04752aeabb99600f5aa8d834bf5.tar.zst
nixpkgs-26a152653db6f04752aeabb99600f5aa8d834bf5.zip
* Adde xpra. Doesn't quite work yet.
* Removed python_alts.

svn path=/nixpkgs/trunk/; revision=11161
Diffstat (limited to 'pkgs/development/interpreters/pyrex/0.9.6.nix')
-rw-r--r--pkgs/development/interpreters/pyrex/0.9.6.nix44
1 files changed, 24 insertions, 20 deletions
diff --git a/pkgs/development/interpreters/pyrex/0.9.6.nix b/pkgs/development/interpreters/pyrex/0.9.6.nix
index 3747bbed4c3..02c1d532abb 100644
--- a/pkgs/development/interpreters/pyrex/0.9.6.nix
+++ b/pkgs/development/interpreters/pyrex/0.9.6.nix
@@ -1,22 +1,26 @@
-args : with args;
-	let localDefs = builderDefs {
-		src = /* put a fetchurl here */
-	fetchurl {
-		url = http://www.cosc.canterbury.ac.nz/greg.ewing/python/Pyrex/oldtar/Pyrex-0.9.6.tar.gz;
-		sha256 = "1i0mrv2a3ihnj5mjf07aic7nlps9qap57j477m8ajwhhwx9vwlxy";
-	};
-		buildInputs = [python];
-		configureFlags = [];
-	} null; /* null is a terminator for sumArgs */
-	in with localDefs;
+args: with args;
+
+let
+
+  localDefs = builderDefs {
+
+    src = fetchurl {
+      url = http://www.cosc.canterbury.ac.nz/greg.ewing/python/Pyrex/oldtar/Pyrex-0.9.6.4.tar.gz;
+      sha256 = "18pd9f8al3l6i27cc0ddhgg7hxf28lnfs75x4a8jzscydxgiq5a8";
+    };
+
+    buildInputs = [python];
+
+  } null; /* null is a terminator for sumArgs */
+
+in with localDefs;
+        
 stdenv.mkDerivation rec {
-	name = "Pyrex-"+version;
-	builder = writeScript (name + "-builder")
-		(textClosure localDefs [installPythonPackage doForceShare]);
-	meta = {
-		description = "
-	Python package compiler or something like that.	
-";
-		inherit src;
-	};
+  name = "pyrex-0.9.6.4";
+  builder = writeScript (name + "-builder")
+    (textClosure localDefs [installPythonPackage doForceShare]);
+  meta = {
+    description = "Python package compiler or something like that";
+    inherit src;
+  };
 }