about summary refs log tree commit diff
path: root/pkgs/applications/networking/cluster
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/applications/networking/cluster
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/applications/networking/cluster')
-rw-r--r--pkgs/applications/networking/cluster/rq/default.nix19
1 files changed, 19 insertions, 0 deletions
diff --git a/pkgs/applications/networking/cluster/rq/default.nix b/pkgs/applications/networking/cluster/rq/default.nix
new file mode 100644
index 000000000000..7451042b6da7
--- /dev/null
+++ b/pkgs/applications/networking/cluster/rq/default.nix
@@ -0,0 +1,19 @@
+{stdenv, fetchurl, sqlite, ruby }:
+
+stdenv.mkDerivation {
+  name = "rq-3.4.0";
+  src = fetchurl {
+    url = http://www.codeforpeople.com/lib/ruby/rq/rq-3.4.0.tgz;
+    sha256 = "1g8wiv83dcn4vzk9wjjzs9vjnwzwpy4h84h34cj32wfz793wfb8b";
+  };
+
+  buildInputs = [ ruby ];
+
+  installPhase = "ruby install.rb";
+  
+  meta = {
+    license = "Ruby";
+    homepage = "http://www.codeforpeople.com/lib/ruby/rq/";
+    description = "rq is a tool used to create instant linux clusters by managing sqlite databases as nfs mounted priority work queues";
+  };
+}