2 , buildPythonApplication
12 buildPythonApplication rec {
17 buildInputs = [ gdb ];
18 propagatedBuildInputs = [
27 inherit pname version;
28 sha256 = "sha256-vmMlRmjFqhs3Vf+IU9IDtJzt4dZ0yIOmXIVOx5chZPA=";
32 echo ${version} > gdbgui/VERSION.txt
33 # relax version requirements
34 sed -i 's/==.*$//' requirements.txt
38 wrapProgram $out/bin/gdbgui \
39 --prefix PATH : ${lib.makeBinPath [ gdb ]}
42 # tests do not work without stdout/stdin
46 description = "A browser-based frontend for GDB";
47 mainProgram = "gdbgui";
48 homepage = "https://www.gdbgui.com/";
49 license = licenses.gpl3;
50 platforms = platforms.unix;
51 maintainers = with maintainers; [ yrashk dump_stack ];