Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 2ddf7c0a6fc6
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 353ea7f3ebd3
Choose a head ref
  • 3 commits
  • 1 file changed
  • 2 contributors

Commits on Jan 6, 2020

  1. kdbg: 3.0.0 -> 3.0.1

    r-ryantm committed Jan 6, 2020
    Copy the full SHA
    df40eb8 View commit details

Commits on Jan 12, 2020

  1. kdbg: Add QT pluging path wrapper.

    Fixes error
    
        qt.qpa.plugin: Could not find the Qt platform plugin "xcb" in ""
        This application failed to start because no Qt platform plugin could be initialized. Reinstalling the application may fix this problem.
    
    See #24256.
    nh2 committed Jan 12, 2020
    Copy the full SHA
    852bd1b View commit details
  2. Merge pull request #77105 from r-ryantm/auto-update/kdbg

    kdbg: 3.0.0 -> 3.0.1
    nh2 authored Jan 12, 2020
    Copy the full SHA
    353ea7f View commit details
Showing with 9 additions and 3 deletions.
  1. +9 −3 pkgs/development/tools/misc/kdbg/default.nix
12 changes: 9 additions & 3 deletions pkgs/development/tools/misc/kdbg/default.nix
Original file line number Diff line number Diff line change
@@ -1,20 +1,26 @@
{ stdenv, fetchurl, cmake, extra-cmake-modules, qt5,
ki18n, kconfig, kiconthemes, kxmlgui, kwindowsystem,
qtbase, makeWrapper,
}:

stdenv.mkDerivation rec {
pname = "kdbg";
version = "3.0.0";
version = "3.0.1";
src = fetchurl {
url = "mirror://sourceforge/kdbg/${version}/${pname}-${version}.tar.gz";
sha256 = "0lxfal6jijdcrf0hc81gmapfmz0kq4569d5qzfm4p72rq9s4r5in";
sha256 = "1gax6xll8svmngw0z1rzhd77xysv01zp0i68x4n5pq0xgh7gi7a4";
};

nativeBuildInputs = [ cmake extra-cmake-modules ];
nativeBuildInputs = [ cmake extra-cmake-modules makeWrapper ];
buildInputs = [ qt5.qtbase ki18n kconfig kiconthemes kxmlgui kwindowsystem ];

enableParallelBuilding = true;


postInstall = ''
wrapProgram $out/bin/kdbg --prefix QT_PLUGIN_PATH : ${qtbase}/${qtbase.qtPluginPrefix}
'';

meta = with stdenv.lib; {
homepage = http://www.kdbg.org/;
description = ''