Skip to content

Commit

Permalink
flootty: 3.2.1 -> 3.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Enzime committed Aug 12, 2018
1 parent 83a1592 commit 78961b6
Showing 1 changed file with 6 additions and 10 deletions.
16 changes: 6 additions & 10 deletions pkgs/development/tools/flootty/default.nix
Original file line number Diff line number Diff line change
@@ -1,22 +1,18 @@
{ stdenv, python }:
{ stdenv, python3Packages }:

let
inherit (python.pkgs) buildPythonApplication fetchPypi;
in

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

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

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

0 comments on commit 78961b6

Please sign in to comment.