pythonPackages.gdbgui: 0.13.2.0 -> 0.13.2.1
- add eventlet to propagatedBuildInputs - add homepage - add gevent-websocket to propagatedBuildInputs Without gevent-websocket, this message is printed on start: "WARNING - WebSocket transport not available. Install gevent-websocket for improved performance." - Add gevent-websocket to propagatedBuildInputs to suppress the error message and supposedly improve performance
This commit is contained in:
parent
a993bd8eb7
commit
54e20c2361
@ -8,11 +8,13 @@
|
|||||||
, pygdbmi
|
, pygdbmi
|
||||||
, pygments
|
, pygments
|
||||||
, gevent
|
, gevent
|
||||||
|
, gevent-websocket
|
||||||
|
, eventlet
|
||||||
, }:
|
, }:
|
||||||
|
|
||||||
buildPythonApplication rec {
|
buildPythonApplication rec {
|
||||||
pname = "gdbgui";
|
pname = "gdbgui";
|
||||||
version = "0.13.2.0";
|
version = "0.13.2.1";
|
||||||
|
|
||||||
buildInputs = [ gdb ];
|
buildInputs = [ gdb ];
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
@ -22,11 +24,13 @@ buildPythonApplication rec {
|
|||||||
pygdbmi
|
pygdbmi
|
||||||
pygments
|
pygments
|
||||||
gevent
|
gevent
|
||||||
|
gevent-websocket
|
||||||
|
eventlet
|
||||||
];
|
];
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "0m1fnwafzrpk77yj3p26vszlz11cv4g2lj38kymk1ilcifh4gqw0";
|
sha256 = "0zn5wi47m8pn4amx574ryyhqvhynipxzyxbx0878ap6g36vh6l1h";
|
||||||
};
|
};
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
@ -45,6 +49,7 @@ buildPythonApplication rec {
|
|||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "A browser-based frontend for GDB";
|
description = "A browser-based frontend for GDB";
|
||||||
|
homepage = "https://www.gdbgui.com/";
|
||||||
license = licenses.gpl3;
|
license = licenses.gpl3;
|
||||||
platforms = platforms.unix;
|
platforms = platforms.unix;
|
||||||
maintainers = with maintainers; [ yrashk ];
|
maintainers = with maintainers; [ yrashk ];
|
||||||
|
Loading…
x
Reference in New Issue
Block a user