kdbg: init at 3.0.0

This commit is contained in:
Spencer Baugh 2018-07-17 00:10:15 +00:00
parent 938a0ddf4a
commit 01a0b1f0c3
2 changed files with 30 additions and 0 deletions

View File

@ -0,0 +1,28 @@
{ stdenv, fetchurl, cmake, extra-cmake-modules, qt5,
ki18n, kconfig, kiconthemes, kxmlgui, kwindowsystem,
}:
stdenv.mkDerivation rec {
name = "kdbg-${version}";
version = "3.0.0";
src = fetchurl {
url = "mirror://sourceforge/kdbg/${version}/${name}.tar.gz";
sha256 = "0lxfal6jijdcrf0hc81gmapfmz0kq4569d5qzfm4p72rq9s4r5in";
};
nativeBuildInputs = [ cmake extra-cmake-modules ];
buildInputs = [ qt5.qtbase ki18n kconfig kiconthemes kxmlgui kwindowsystem ];
enableParallelBuilding = true;
meta = with stdenv.lib; {
homepage = http://www.kdbg.org/;
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 ];
};
}

View File

@ -3624,6 +3624,8 @@ with pkgs;
lvmsync = callPackage ../tools/backup/lvmsync { };
kdbg = libsForQt5.callPackage ../development/tools/misc/kdbg { };
kippo = callPackage ../servers/kippo { };
kzipmix = pkgsi686Linux.callPackage ../tools/compression/kzipmix { };