mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
flootty: init at 3.2.1
This commit is contained in:
parent
d0d905668c
commit
79db7c0616
@ -530,6 +530,7 @@
|
|||||||
schristo = "Scott Christopher <schristopher@konputa.com>";
|
schristo = "Scott Christopher <schristopher@konputa.com>";
|
||||||
scolobb = "Sergiu Ivanov <sivanov@colimite.fr>";
|
scolobb = "Sergiu Ivanov <sivanov@colimite.fr>";
|
||||||
sdll = "Sasha Illarionov <sasha.delly@gmail.com>";
|
sdll = "Sasha Illarionov <sasha.delly@gmail.com>";
|
||||||
|
sellout = "Greg Pfeil <greg@technomadic.org>";
|
||||||
sepi = "Raffael Mancini <raffael@mancini.lu>";
|
sepi = "Raffael Mancini <raffael@mancini.lu>";
|
||||||
seppeljordan = "Sebastian Jordan <sebastian.jordan.mail@googlemail.com>";
|
seppeljordan = "Sebastian Jordan <sebastian.jordan.mail@googlemail.com>";
|
||||||
shanemikel = "Shane Pearlman <shanemikel1@gmail.com>";
|
shanemikel = "Shane Pearlman <shanemikel1@gmail.com>";
|
||||||
|
19
pkgs/development/python-modules/flootty/default.nix
Normal file
19
pkgs/development/python-modules/flootty/default.nix
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
{ stdenv, buildPythonPackage, fetchPypi }:
|
||||||
|
|
||||||
|
buildPythonPackage 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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -7004,7 +7004,7 @@ with pkgs;
|
|||||||
|
|
||||||
findbugs = callPackage ../development/tools/analysis/findbugs { };
|
findbugs = callPackage ../development/tools/analysis/findbugs { };
|
||||||
|
|
||||||
foreman = callPackage ../tools/system/foreman { };
|
flootty = pythonPackages.flootty;
|
||||||
|
|
||||||
flow = callPackage ../development/tools/analysis/flow {
|
flow = callPackage ../development/tools/analysis/flow {
|
||||||
inherit (darwin.apple_sdk.frameworks) CoreServices;
|
inherit (darwin.apple_sdk.frameworks) CoreServices;
|
||||||
@ -7012,6 +7012,8 @@ with pkgs;
|
|||||||
inherit (ocamlPackages_4_03) ocaml findlib camlp4 sedlex ocamlbuild;
|
inherit (ocamlPackages_4_03) ocaml findlib camlp4 sedlex ocamlbuild;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
foreman = callPackage ../tools/system/foreman { };
|
||||||
|
|
||||||
framac = callPackage ../development/tools/analysis/frama-c { };
|
framac = callPackage ../development/tools/analysis/frama-c { };
|
||||||
|
|
||||||
frame = callPackage ../development/libraries/frame { };
|
frame = callPackage ../development/libraries/frame { };
|
||||||
|
@ -167,6 +167,8 @@ in {
|
|||||||
|
|
||||||
distorm3 = callPackage ../development/python-modules/distorm3 { };
|
distorm3 = callPackage ../development/python-modules/distorm3 { };
|
||||||
|
|
||||||
|
flootty = callPackage ../development/python-modules/flootty { };
|
||||||
|
|
||||||
h5py = callPackage ../development/python-modules/h5py {
|
h5py = callPackage ../development/python-modules/h5py {
|
||||||
hdf5 = pkgs.hdf5;
|
hdf5 = pkgs.hdf5;
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user