lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 22.05-pre 25 lines 762 B view raw
1{ lib, fetchurl, python2Packages }: 2 3let 4 inherit (python2Packages) buildPythonApplication; 5in 6buildPythonApplication rec { 7 pname = "polysh"; 8 version = "0.4"; 9 src = fetchurl { 10 url = "http://guichaz.free.fr/polysh/files/${pname}-${version}.tar.bz2"; 11 sha256 = "0kxhp38c8a8hc8l86y53l2z5zpzxc4b8lx5zyzmq1badcrfc4mh4"; 12 }; 13 14 meta = with lib; { 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 = [ maintainers.astsmtl ]; 22 homepage = "http://guichaz.free.fr/polysh/"; 23 license = licenses.gpl2; 24 }; 25}