summary refs log tree commit diff
path: root/pkgs/development/python-modules/4suite/default.nix
diff options
context:
space:
mode:
authorPjotr Prins <pjotr.public01@thebird.nl>2008-08-29 13:53:28 +0000
committerPjotr Prins <pjotr.public01@thebird.nl>2008-08-29 13:53:28 +0000
commit73d2e4f49d230e24cf912f6f6429071946ed1d4c (patch)
treec7e27f6d4885dde12e35ef4ecac302e73e53aa8c /pkgs/development/python-modules/4suite/default.nix
parenta0e87d612388649c125f00086c9bcd4b1d82e584 (diff)
downloadnixlib-73d2e4f49d230e24cf912f6f6429071946ed1d4c.tar
nixlib-73d2e4f49d230e24cf912f6f6429071946ed1d4c.tar.gz
nixlib-73d2e4f49d230e24cf912f6f6429071946ed1d4c.tar.bz2
nixlib-73d2e4f49d230e24cf912f6f6429071946ed1d4c.tar.lz
nixlib-73d2e4f49d230e24cf912f6f6429071946ed1d4c.tar.xz
nixlib-73d2e4f49d230e24cf912f6f6429071946ed1d4c.tar.zst
nixlib-73d2e4f49d230e24cf912f6f6429071946ed1d4c.zip
- Some Ruby interpreter bumped version
- Kernel headers 2.6.18 added (XEN virtual images)
- unifdef package added for kernel headers 2.6.18
- Python Zope and 4suite added
- Trying bioconductor packages with R-lang (still failing)
- Bumped gmp version
- Added rq cluster runner - still requires extra gems (installs, but does not run)


svn path=/nixpkgs/trunk/; revision=12766
Diffstat (limited to 'pkgs/development/python-modules/4suite/default.nix')
-rw-r--r--pkgs/development/python-modules/4suite/default.nix13
1 files changed, 13 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/4suite/default.nix b/pkgs/development/python-modules/4suite/default.nix
new file mode 100644
index 000000000000..9f900e4f50ab
--- /dev/null
+++ b/pkgs/development/python-modules/4suite/default.nix
@@ -0,0 +1,13 @@
+{stdenv, fetchurl, python}:
+
+stdenv.mkDerivation rec {
+  version = "1.0.2";
+  name = "4suite-${version}";
+  src = fetchurl {
+    url = "mirror://sourceforge/foursuite/4Suite-XML-${version}.tar.bz2";
+    sha256 = "0g5cyqxhhiqnvqk457k8sb97r18pwgx6gff18q5296xd3zf4cias";
+  };
+  buildInputs = [python];
+  buildPhase = "true";
+  installPhase = "python ./setup.py install --prefix=$out";
+}