2018-08-10 22:23:36 -07:00
|
|
|
{ stdenv, python3Packages }:
|
2018-01-12 09:19:46 -08:00
|
|
|
|
2018-08-10 22:23:36 -07:00
|
|
|
python3Packages.buildPythonApplication rec {
|
2018-01-12 09:19:46 -08:00
|
|
|
pname = "Flootty";
|
2018-08-10 22:23:36 -07:00
|
|
|
version = "3.2.2";
|
2018-01-12 09:19:46 -08:00
|
|
|
|
2018-08-10 22:23:36 -07:00
|
|
|
src = python3Packages.fetchPypi {
|
2018-01-12 09:19:46 -08:00
|
|
|
inherit pname version;
|
2018-08-10 22:23:36 -07:00
|
|
|
sha256 = "0gfl143ly81pmmrcml91yr0ypvwrs5q4s1sfdc0l2qkqpy233ih7";
|
2018-01-12 09:19:46 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A collaborative terminal. In practice, it's similar to a shared screen or tmux session";
|
|
|
|
homepage = "https://floobits.com/help/flootty";
|
|
|
|
license = licenses.asl20;
|
2021-01-05 22:06:03 -08:00
|
|
|
maintainers = with maintainers; [ sellout ];
|
2018-01-12 09:19:46 -08:00
|
|
|
};
|
|
|
|
}
|