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

19 lines
520 B
Nix
Raw Normal View History

{ lib, python3Packages }:
2018-01-12 17:19:46 +00:00
2018-08-11 05:23:36 +00:00
python3Packages.buildPythonApplication rec {
2018-01-12 17:19:46 +00:00
pname = "Flootty";
2018-08-11 05:23:36 +00:00
version = "3.2.2";
2018-01-12 17:19:46 +00:00
2018-08-11 05:23:36 +00:00
src = python3Packages.fetchPypi {
2018-01-12 17:19:46 +00:00
inherit pname version;
2018-08-11 05:23:36 +00:00
sha256 = "0gfl143ly81pmmrcml91yr0ypvwrs5q4s1sfdc0l2qkqpy233ih7";
2018-01-12 17:19:46 +00:00
};
meta = with lib; {
2018-01-12 17:19:46 +00:00
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 ];
2018-01-12 17:19:46 +00:00
};
}