summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNiklas Hambüchen <mail@nh2.me>2020-01-12 05:22:45 +0100
committerGitHub <noreply@github.com>2020-01-12 05:22:45 +0100
commit353ea7f3ebd34a989c30cfa714644b86f1fd50ef (patch)
tree09155db3cc39c936b7284272094f1a37e6bd78f1
parentMerge pull request #77096 from raboof/ms-sys-reproducibility (diff)
parentkdbg: Add QT pluging path wrapper. (diff)
downloadnixpkgs-353ea7f3ebd34a989c30cfa714644b86f1fd50ef.tar.gz
Merge pull request #77105 from r-ryantm/auto-update/kdbg
kdbg: 3.0.0 -> 3.0.1
-rw-r--r--pkgs/development/tools/misc/kdbg/default.nix12
1 files changed, 9 insertions, 3 deletions
diff --git a/pkgs/development/tools/misc/kdbg/default.nix b/pkgs/development/tools/misc/kdbg/default.nix
index 8da3cd57703c..29bf1333aa05 100644
--- a/pkgs/development/tools/misc/kdbg/default.nix
+++ b/pkgs/development/tools/misc/kdbg/default.nix
@@ -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 = ''