about summary refs log tree commit diff
path: root/pkgs/development/tools/flootty
diff options
context:
space:
mode:
authorGregory Pfeil <greg@technomadic.org>2018-01-13 09:56:42 -0700
committerGregory Pfeil <greg@technomadic.org>2018-01-13 09:59:25 -0700
commitd40d41ef51cbe82bf98e4d309374706002f50385 (patch)
tree17a395ad92750730c03577c1d3f9c56d6821769b /pkgs/development/tools/flootty
parent38deb5354221881f8fa6437d7b1c522835fb2aba (diff)
Move flootty from python-modules.
Diffstat (limited to 'pkgs/development/tools/flootty')
-rw-r--r--pkgs/development/tools/flootty/default.nix23
1 files changed, 23 insertions, 0 deletions
diff --git a/pkgs/development/tools/flootty/default.nix b/pkgs/development/tools/flootty/default.nix
new file mode 100644
index 0000000000000..9535ba86dd060
--- /dev/null
+++ b/pkgs/development/tools/flootty/default.nix
@@ -0,0 +1,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 ];
+  };
+}