about summary refs log tree commit diff
path: root/pkgs/tools/networking/polysh
diff options
context:
space:
mode:
authorAlexander Tsamutali <astsmtl@yandex.ru>2016-11-29 17:32:21 +0300
committerAlexander Tsamutali <astsmtl@yandex.ru>2016-11-29 17:32:21 +0300
commitc9b8a6585df2f3ac0c8713b4efc4eaaf72e7b52f (patch)
tree9e5179294b4b63d8c8fb118d9cabb3f6a286ce9d /pkgs/tools/networking/polysh
parentb04e23bbb8fa254c6b438ccc7f9c7bccd723356e (diff)
Add tools/networking/polysh
Diffstat (limited to 'pkgs/tools/networking/polysh')
-rw-r--r--pkgs/tools/networking/polysh/default.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/tools/networking/polysh/default.nix b/pkgs/tools/networking/polysh/default.nix
new file mode 100644
index 0000000000000..b94ec8e429faa
--- /dev/null
+++ b/pkgs/tools/networking/polysh/default.nix
@@ -0,0 +1,24 @@
+{ stdenv, fetchurl, python2Packages }:
+
+let
+  inherit (python2Packages) buildPythonApplication;
+in
+buildPythonApplication rec {
+  name = "polysh-${version}";
+  version = "0.4";
+  src = fetchurl {
+          url = "http://guichaz.free.fr/polysh/files/${name}.tar.bz2";
+          sha256 = "0kxhp38c8a8hc8l86y53l2z5zpzxc4b8lx5zyzmq1badcrfc4mh4";
+        };
+
+  meta = {
+    description = "A tool to aggregate several remote shells into one";
+    longDescription = ''
+      Polysh is a tool to aggregate several remote shells into one. It
+      is used to launch an interactive remote shell on many machines
+      at once.
+    '';
+    maintainers = with stdenv.lib.maintainers; [ astsmtl ];
+    homepage = http://guichaz.free.fr/polysh/;
+  };
+}