mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
kdbg: init at 3.0.0
This commit is contained in:
parent
938a0ddf4a
commit
01a0b1f0c3
2 changed files with 30 additions and 0 deletions
28
pkgs/development/tools/misc/kdbg/default.nix
Normal file
28
pkgs/development/tools/misc/kdbg/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue