Skip to content

Commit c9b8a65

Browse files
committedNov 29, 2016
Add tools/networking/polysh
1 parent b04e23b commit c9b8a65

File tree

2 files changed

+26
-0
lines changed

2 files changed

+26
-0
lines changed
 

Diff for: ‎pkgs/tools/networking/polysh/default.nix

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{ stdenv, fetchurl, python2Packages }:
2+
3+
let
4+
inherit (python2Packages) buildPythonApplication;
5+
in
6+
buildPythonApplication rec {
7+
name = "polysh-${version}";
8+
version = "0.4";
9+
src = fetchurl {
10+
url = "http://guichaz.free.fr/polysh/files/${name}.tar.bz2";
11+
sha256 = "0kxhp38c8a8hc8l86y53l2z5zpzxc4b8lx5zyzmq1badcrfc4mh4";
12+
};
13+
14+
meta = {
15+
description = "A tool to aggregate several remote shells into one";
16+
longDescription = ''
17+
Polysh is a tool to aggregate several remote shells into one. It
18+
is used to launch an interactive remote shell on many machines
19+
at once.
20+
'';
21+
maintainers = with stdenv.lib.maintainers; [ astsmtl ];
22+
homepage = http://guichaz.free.fr/polysh/;
23+
};
24+
}

Diff for: ‎pkgs/top-level/all-packages.nix

+2
Original file line numberDiff line numberDiff line change
@@ -3330,6 +3330,8 @@ in
33303330

33313331
polkit_gnome = callPackage ../tools/security/polkit-gnome { };
33323332

3333+
polysh = callPackage ../tools/networking/polysh { };
3334+
33333335
ponysay = callPackage ../tools/misc/ponysay { };
33343336

33353337
popfile = callPackage ../tools/text/popfile { };

0 commit comments

Comments
 (0)
Please sign in to comment.