1 { lib, stdenv, fetchurl, cmake, extra-cmake-modules, qt5,
2 ki18n, kconfig, kiconthemes, kxmlgui, kwindowsystem,
6 stdenv.mkDerivation rec {
10 url = "mirror://sourceforge/kdbg/${version}/${pname}-${version}.tar.gz";
11 sha256 = "sha256-aLX/0GXof77NqQj7I7FUCZjyDtF1P8MJ4/NHJNm4Yr0=";
14 nativeBuildInputs = [ cmake extra-cmake-modules makeWrapper ];
15 buildInputs = [ qt5.qtbase ki18n kconfig kiconthemes kxmlgui kwindowsystem ];
18 wrapProgram $out/bin/kdbg --prefix QT_PLUGIN_PATH : ${qtbase}/${qtbase.qtPluginPrefix}
21 dontWrapQtApps = true;
24 homepage = "https://www.kdbg.org/";
26 A graphical user interface to gdb, the GNU debugger. It provides an
27 intuitive interface for setting breakpoints, inspecting variables, and
28 stepping through code.
31 license = licenses.gpl2;
32 maintainers = [ maintainers.catern ];