summary refs log tree commit diff
path: root/pkgs/development/tools/flootty/default.nix
blob: 9535ba86dd0600149358fb947ef52bf7673b500c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ stdenv, python }:

let
  inherit (python.pkgs) buildPythonApplication fetchPypi;
in

buildPythonApplication rec {
  pname = "Flootty";
  version = "3.2.1";
  name = "${pname}-${version}";

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

  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;
    maintainers = with maintainers; [ sellout ];
  };
}