about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/tools/flootty/default.nix
blob: 9440b0b6194622b321ea9224521b71d0e3c80fef (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ lib, python3Packages, fetchPypi }:

python3Packages.buildPythonApplication rec {
  pname = "Flootty";
  version = "3.2.2";

  src = fetchPypi {
    inherit pname version;
    sha256 = "0gfl143ly81pmmrcml91yr0ypvwrs5q4s1sfdc0l2qkqpy233ih7";
  };

  meta = with lib; {
    description = "A collaborative terminal. In practice, it's similar to a shared screen or tmux session";
    mainProgram = "flootty";
    homepage = "https://floobits.com/help/flootty";
    license = licenses.asl20;
    maintainers = with maintainers; [ sellout ];
  };
}