nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at 19.03 18 lines 537 B view raw
1{ stdenv, python3Packages }: 2 3python3Packages.buildPythonApplication rec { 4 pname = "Flootty"; 5 version = "3.2.2"; 6 7 src = python3Packages.fetchPypi { 8 inherit pname version; 9 sha256 = "0gfl143ly81pmmrcml91yr0ypvwrs5q4s1sfdc0l2qkqpy233ih7"; 10 }; 11 12 meta = with stdenv.lib; { 13 description = "A collaborative terminal. In practice, it's similar to a shared screen or tmux session"; 14 homepage = "https://floobits.com/help/flootty"; 15 license = licenses.asl20; 16 maintainers = with maintainers; [ sellout enzime ]; 17 }; 18}