summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorLancelot SIX <lancelot@lancelotsix.com>2016-03-04 10:27:19 +0100
committerLancelot SIX <lancelot@lancelotsix.com>2016-03-04 10:27:19 +0100
commitf689bc96294cc6660d9251df1b7fc15aa64533ea (patch)
tree3d4de9f0685a8b3e59813a84b4b68e4a9c637b3e /pkgs
parent60b1675be0863a8a931f26da36fad48a8656b5ae (diff)
parent92e86f03b0e51bba567b7a7c0bb1295335847070 (diff)
downloadnixpkgs-f689bc96294cc6660d9251df1b7fc15aa64533ea.tar
nixpkgs-f689bc96294cc6660d9251df1b7fc15aa64533ea.tar.gz
nixpkgs-f689bc96294cc6660d9251df1b7fc15aa64533ea.tar.bz2
nixpkgs-f689bc96294cc6660d9251df1b7fc15aa64533ea.tar.lz
nixpkgs-f689bc96294cc6660d9251df1b7fc15aa64533ea.tar.xz
nixpkgs-f689bc96294cc6660d9251df1b7fc15aa64533ea.tar.zst
nixpkgs-f689bc96294cc6660d9251df1b7fc15aa64533ea.zip
Merge pull request #13656 from bzizou/taktuk
taktuk: init at 3.7.5
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/networking/cluster/taktuk/default.nix34
-rw-r--r--pkgs/top-level/all-packages.nix2
2 files changed, 36 insertions, 0 deletions
diff --git a/pkgs/applications/networking/cluster/taktuk/default.nix b/pkgs/applications/networking/cluster/taktuk/default.nix
new file mode 100644
index 00000000000..79e0a6ec207
--- /dev/null
+++ b/pkgs/applications/networking/cluster/taktuk/default.nix
@@ -0,0 +1,34 @@
+{ stdenv, fetchurl, perl , openssh}:
+
+stdenv.mkDerivation rec {
+  version = "3.7.5";
+  name = "taktuk-${version}";
+
+  buildInputs = [ perl ];
+
+  src = fetchurl {
+    url = "https://gforge.inria.fr/frs/download.php/33412/${name}-3.7.5.tar.gz";
+    sha256 = "d96ef6c63d77f32339066f143ef7e0bc00041e10724254bf15787746ad1f1070";
+  };
+
+  preBuild = ''
+      substituteInPlace ./taktuk --replace "/usr/bin/perl" "${perl}/bin/perl"
+  '';
+
+  meta = {
+    description = "Efficient, large scale, parallel remote execution of commands";
+    longDescription = ''
+      TakTuk allows one to execute commands in parallel on a potentially large set
+      of remote nodes (using ssh to connect to each node). It is typically used
+      inside high performance computing clusters and grids. It uses an adaptive
+      algorithm to efficiently distribute the work and sets up an interconnection
+      network to transport commands and perform I/Os multiplexing. It doesn't
+      require any specific software on the nodes thanks to a self-propagation
+      algorithm.'';
+    homepage = http://taktuk.gforge.inria.fr/;
+    license = stdenv.lib.licenses.gpl2;
+    maintainers = [ stdenv.lib.maintainers.bzizou ];
+    platforms = stdenv.lib.platforms.linux;
+  };
+}
+
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index 4aaaaf2ae1f..4c67b0d79c3 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -5590,6 +5590,8 @@ let
 
   supercollider_scel = supercollider.override { useSCEL = true; };
 
+  taktuk = callPackage ../applications/networking/cluster/taktuk { };
+
   tcl = tcl-8_6;
   tcl-8_5 = callPackage ../development/interpreters/tcl/8.5.nix { };
   tcl-8_6 = callPackage ../development/interpreters/tcl/8.6.nix { };