mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
Add tools/networking/polysh
This commit is contained in:
parent
b04e23bbb8
commit
c9b8a6585d
24
pkgs/tools/networking/polysh/default.nix
Normal file
24
pkgs/tools/networking/polysh/default.nix
Normal file
@ -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/;
|
||||||
|
};
|
||||||
|
}
|
@ -3330,6 +3330,8 @@ in
|
|||||||
|
|
||||||
polkit_gnome = callPackage ../tools/security/polkit-gnome { };
|
polkit_gnome = callPackage ../tools/security/polkit-gnome { };
|
||||||
|
|
||||||
|
polysh = callPackage ../tools/networking/polysh { };
|
||||||
|
|
||||||
ponysay = callPackage ../tools/misc/ponysay { };
|
ponysay = callPackage ../tools/misc/ponysay { };
|
||||||
|
|
||||||
popfile = callPackage ../tools/text/popfile { };
|
popfile = callPackage ../tools/text/popfile { };
|
||||||
|
Loading…
Reference in New Issue
Block a user