nixpkgs/pkgs/tools/networking/polysh/default.nix

26 lines
762 B
Nix
Raw Normal View History

{ lib, fetchurl, python2Packages }:
2016-11-29 14:32:21 +00:00
let
inherit (python2Packages) buildPythonApplication;
in
buildPythonApplication rec {
pname = "polysh";
2016-11-29 14:32:21 +00:00
version = "0.4";
src = fetchurl {
url = "http://guichaz.free.fr/polysh/files/${pname}-${version}.tar.bz2";
2016-11-29 14:32:21 +00:00
sha256 = "0kxhp38c8a8hc8l86y53l2z5zpzxc4b8lx5zyzmq1badcrfc4mh4";
};
meta = with lib; {
2016-11-29 14:32:21 +00:00
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.
'';
2018-09-10 19:43:07 +00:00
maintainers = [ maintainers.astsmtl ];
homepage = "http://guichaz.free.fr/polysh/";
2018-09-10 19:43:07 +00:00
license = licenses.gpl2;
2016-11-29 14:32:21 +00:00
};
}