File tree 2 files changed +26
-0
lines changed
2 files changed +26
-0
lines changed Original file line number Diff line number Diff line change
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
+ }
Original file line number Diff line number Diff line change 3330
3330
3331
3331
polkit_gnome = callPackage ../tools/security/polkit-gnome { };
3332
3332
3333
+ polysh = callPackage ../tools/networking/polysh { };
3334
+
3333
3335
ponysay = callPackage ../tools/misc/ponysay { };
3334
3336
3335
3337
popfile = callPackage ../tools/text/popfile { };
You can’t perform that action at this time.
0 commit comments