34 lines
1013 B
Nix
Raw Permalink Normal View History

{ lib, stdenv, fetchurl, cmake, extra-cmake-modules, qt5,
2018-07-17 00:10:15 +00:00
ki18n, kconfig, kiconthemes, kxmlgui, kwindowsystem,
qtbase, makeWrapper,
2018-07-17 00:10:15 +00:00
}:
stdenv.mkDerivation rec {
pname = "kdbg";
2020-01-06 09:25:08 -08:00
version = "3.0.1";
2018-07-17 00:10:15 +00:00
src = fetchurl {
url = "mirror://sourceforge/kdbg/${version}/${pname}-${version}.tar.gz";
2020-01-06 09:25:08 -08:00
sha256 = "1gax6xll8svmngw0z1rzhd77xysv01zp0i68x4n5pq0xgh7gi7a4";
2018-07-17 00:10:15 +00:00
};
nativeBuildInputs = [ cmake extra-cmake-modules makeWrapper ];
2018-07-17 00:10:15 +00:00
buildInputs = [ qt5.qtbase ki18n kconfig kiconthemes kxmlgui kwindowsystem ];
postInstall = ''
wrapProgram $out/bin/kdbg --prefix QT_PLUGIN_PATH : ${qtbase}/${qtbase.qtPluginPrefix}
'';
dontWrapQtApps = true;
meta = with lib; {
homepage = "https://www.kdbg.org/";
2018-07-17 00:10:15 +00: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 ];
};
}