2021-01-23 04:26:19 -08:00
|
|
|
{ lib, stdenv, fetchurl, cmake, extra-cmake-modules, qt5,
|
2018-07-16 17:10:15 -07:00
|
|
|
ki18n, kconfig, kiconthemes, kxmlgui, kwindowsystem,
|
2020-01-11 20:20:39 -08:00
|
|
|
qtbase, makeWrapper,
|
2018-07-16 17:10:15 -07:00
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "kdbg";
|
2020-01-06 09:25:08 -08:00
|
|
|
version = "3.0.1";
|
2018-07-16 17:10:15 -07:00
|
|
|
src = fetchurl {
|
2019-08-15 05:41:18 -07:00
|
|
|
url = "mirror://sourceforge/kdbg/${version}/${pname}-${version}.tar.gz";
|
2020-01-06 09:25:08 -08:00
|
|
|
sha256 = "1gax6xll8svmngw0z1rzhd77xysv01zp0i68x4n5pq0xgh7gi7a4";
|
2018-07-16 17:10:15 -07:00
|
|
|
};
|
|
|
|
|
2020-01-11 20:20:39 -08:00
|
|
|
nativeBuildInputs = [ cmake extra-cmake-modules makeWrapper ];
|
2018-07-16 17:10:15 -07:00
|
|
|
buildInputs = [ qt5.qtbase ki18n kconfig kiconthemes kxmlgui kwindowsystem ];
|
|
|
|
|
2020-01-11 20:20:39 -08:00
|
|
|
postInstall = ''
|
|
|
|
wrapProgram $out/bin/kdbg --prefix QT_PLUGIN_PATH : ${qtbase}/${qtbase.qtPluginPrefix}
|
|
|
|
'';
|
|
|
|
|
2021-01-12 03:50:23 -08:00
|
|
|
dontWrapQtApps = true;
|
|
|
|
|
2021-01-23 04:26:19 -08:00
|
|
|
meta = with lib; {
|
2020-10-02 00:58:50 -07:00
|
|
|
homepage = "https://www.kdbg.org/";
|
2018-07-16 17:10:15 -07:00
|
|
|
description = ''
|
|
|
|
A graphical user interface to gdb, the GNU debugger. It provides an
|
|
|
|
intuitive interface for setting breakpoints, inspecting variables, and
|
|
|
|
stepping through code.
|
|
|
|
'';
|
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = [ maintainers.catern ];
|
|
|
|
};
|
|
|
|
}
|