nixpkgs/pkgs/development/tools/flootty/default.nix

23 lines
555 B
Nix
Raw Normal View History

2018-01-13 16:56:42 +00:00
{ stdenv, python }:
2018-01-12 17:19:46 +00:00
2018-01-13 16:56:42 +00:00
let
inherit (python.pkgs) buildPythonApplication fetchPypi;
in
buildPythonApplication rec {
2018-01-12 17:19:46 +00:00
pname = "Flootty";
version = "3.2.1";
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 ];
};
}