Merge pull request #48071 from catern/kdbg

kdbg: init at 3.0.0
This commit is contained in:
Joachim F 2018-10-14 15:09:10 +00:00 committed by GitHub
commit fe1a70c3cd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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

@ -3639,6 +3639,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 { };