nixpkgs/pkgs/applications/editors/kdevelop5/kdevelop.nix

70 lines
2.6 KiB
Nix
Raw Normal View History

2017-05-17 19:26:11 +00:00
{ mkDerivation, lib, fetchurl, cmake, gettext, pkgconfig, extra-cmake-modules
2018-08-23 22:05:55 +00:00
, qtquickcontrols, qtwebkit, qttools, kde-cli-tools, qtbase
, kconfig, kdeclarative, kdoctools, kiconthemes, ki18n, kitemmodels, kitemviews
, kjobwidgets, kcmutils, kio, knewstuff, knotifyconfig, kparts, ktexteditor
2017-08-23 10:11:31 +00:00
, threadweaver, kxmlgui, kwindowsystem, grantlee, kcrash, karchive, kguiaddons
2018-08-23 22:05:55 +00:00
, plasma-framework, krunner, kdevelop-pg-qt, shared-mime-info, libkomparediff2
, libksysguard, konsole, llvmPackages, makeWrapper, kpurpose, boost
}:
let
pname = "kdevelop";
2018-08-23 22:05:55 +00:00
version = "5.2.4";
qtVersion = "5.${lib.versions.minor qtbase.version}";
in
2017-05-16 15:56:41 +00:00
mkDerivation rec {
name = "${pname}-${version}";
src = fetchurl {
url = "mirror://kde/stable/${pname}/${version}/src/${name}.tar.xz";
2018-08-23 22:05:55 +00:00
sha256 = "1jbks7nh9rybz4kg152l39hfj2x0p6mjins8x9mz03bbv8jf8gic";
};
2016-10-15 05:52:42 +00:00
nativeBuildInputs = [
2017-05-17 19:26:11 +00:00
cmake gettext pkgconfig extra-cmake-modules makeWrapper
2016-10-15 05:52:42 +00:00
];
buildInputs = [
2017-05-16 15:56:41 +00:00
kdevelop-pg-qt
llvmPackages.llvm llvmPackages.clang-unwrapped
];
propagatedBuildInputs = [
2018-08-23 22:05:55 +00:00
qtquickcontrols qtwebkit boost libkomparediff2
kconfig kdeclarative kdoctools kiconthemes ki18n kitemmodels kitemviews
kjobwidgets kcmutils kio knewstuff knotifyconfig kparts ktexteditor
2016-10-15 05:52:42 +00:00
threadweaver kxmlgui kwindowsystem grantlee plasma-framework krunner
2018-08-23 22:05:55 +00:00
shared-mime-info libksysguard konsole kcrash karchive kguiaddons kpurpose
];
postInstall = ''
# The kdevelop! script (shell environment) needs qdbus and kioclient5 in PATH.
2018-08-23 22:05:55 +00:00
wrapProgram "$out/bin/kdevelop!" \
--prefix PATH ":" "${lib.makeBinPath [ qttools kde-cli-tools ]}"
wrapProgram "$out/bin/kdevelop" \
--prefix QT_PLUGIN_PATH : $out/lib/qt-${qtVersion}/plugins
2017-05-16 15:56:41 +00:00
# Fix the (now wrapped) kdevelop! to find things in right places:
# - Fixup the one use where KDEV_BASEDIR is assumed to contain kdevelop.
kdev_fixup_sed+=";s|\\\$KDEV_BASEDIR/kdevelop|$out/bin/kdevelop|"
sed -E -i "$kdev_fixup_sed" "$out/bin/.kdevelop!-wrapped"
'';
2017-05-16 15:56:41 +00:00
meta = with lib; {
maintainers = [ maintainers.ambrop72 ];
platforms = platforms.linux;
description = "KDE official IDE";
longDescription =
''
A free, opensource IDE (Integrated Development Environment)
for MS Windows, Mac OsX, Linux, Solaris and FreeBSD. It is a
feature-full, plugin extendable IDE for C/C++ and other
programing languages. It is based on KDevPlatform, KDE and Qt
libraries and is under development since 1998.
'';
homepage = https://www.kdevelop.org;
2017-05-16 15:56:41 +00:00
license = with licenses; [ gpl2Plus lgpl2Plus ];
};
}