Merge pull request #77105 from r-ryantm/auto-update/kdbg
kdbg: 3.0.0 -> 3.0.1
This commit is contained in:
commit
353ea7f3eb
1 changed files with 9 additions and 3 deletions
|
@ -1,20 +1,26 @@
|
||||||
{ stdenv, fetchurl, cmake, extra-cmake-modules, qt5,
|
{ stdenv, fetchurl, cmake, extra-cmake-modules, qt5,
|
||||||
ki18n, kconfig, kiconthemes, kxmlgui, kwindowsystem,
|
ki18n, kconfig, kiconthemes, kxmlgui, kwindowsystem,
|
||||||
|
qtbase, makeWrapper,
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "kdbg";
|
pname = "kdbg";
|
||||||
version = "3.0.0";
|
version = "3.0.1";
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://sourceforge/kdbg/${version}/${pname}-${version}.tar.gz";
|
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 ];
|
buildInputs = [ qt5.qtbase ki18n kconfig kiconthemes kxmlgui kwindowsystem ];
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
|
|
||||||
|
postInstall = ''
|
||||||
|
wrapProgram $out/bin/kdbg --prefix QT_PLUGIN_PATH : ${qtbase}/${qtbase.qtPluginPrefix}
|
||||||
|
'';
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
homepage = http://www.kdbg.org/;
|
homepage = http://www.kdbg.org/;
|
||||||
description = ''
|
description = ''
|
||||||
|
|
Loading…
Reference in a new issue