7869d16545
Also begin to start work on cross compilation, though that will have to
be finished later.
The patches are based on the first version of
https://reviews.llvm.org/D99484. It's very annoying to do the
back-porting but the review has uncovered nothing super major so I'm
fine sticking with what I've got.
Beyond making the outputs work, I also strove to re-sync the packages,
as they have been drifting pointlessly apart for some time.
----
Other misc notes, highly incomplete
- lvm-config-native and llvm-config are put in `dev` because they are
tools just for build time.
- Clang no longer has an lld dep. That was introduced in
db29857eb3
, but if clang needs help
finding lld when it is used we should just pass it flags / put in the
resource dir. Providing it at build time increases critical path
length for no good reason.
----
A note on `nativeCC`:
`stdenv` takes tools from the previous stage, so:
1. `pkgsBuildBuild`: `(?1, x, x)`
2. `pkgsBuildBuild.stdenv.cc`: `(?0, ?1, x)`
while:
1. `pkgsBuildBuild`: `(?1, x, x)`
2. `pkgsBuildBuild.targetPackages`: `(x, x, ?2)`
3. `pkgsBuildBuild.targetPackages.stdenv.cc`: `(?1, x, x)`
74 lines
2.7 KiB
Nix
74 lines
2.7 KiB
Nix
|
|
{ mkDerivation, lib, fetchurl, cmake, gettext, pkg-config, extra-cmake-modules
|
|
, qtquickcontrols, qtwebkit, qttools, kde-cli-tools, qtbase
|
|
, kconfig, kdeclarative, kdoctools, kiconthemes, ki18n, kitemmodels, kitemviews
|
|
, kjobwidgets, kcmutils, kio, knewstuff, knotifyconfig, kparts, ktexteditor
|
|
, threadweaver, kxmlgui, kwindowsystem, grantlee, kcrash, karchive, kguiaddons
|
|
, plasma-framework, krunner, kdevelop-pg-qt, shared-mime-info, libkomparediff2
|
|
, libksysguard, konsole, llvmPackages, makeWrapper, kpurpose, boost
|
|
}:
|
|
|
|
mkDerivation rec {
|
|
pname = "kdevelop";
|
|
version = "5.6.1";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://kde/stable/${pname}/${version}/src/${pname}-${version}.tar.xz";
|
|
sha256 = "02ip5r67hjfpywkm3mz86n6wbqcr7996ifzfd2fyzsvm4998hi4y";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake gettext pkg-config extra-cmake-modules makeWrapper
|
|
];
|
|
|
|
buildInputs = [
|
|
kdevelop-pg-qt
|
|
llvmPackages.llvm llvmPackages.libclang
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
qtquickcontrols qtwebkit boost libkomparediff2
|
|
kconfig kdeclarative kdoctools kiconthemes ki18n kitemmodels kitemviews
|
|
kjobwidgets kcmutils kio knewstuff knotifyconfig kparts ktexteditor
|
|
threadweaver kxmlgui kwindowsystem grantlee plasma-framework krunner
|
|
shared-mime-info libksysguard konsole kcrash karchive kguiaddons kpurpose
|
|
];
|
|
|
|
# https://cgit.kde.org/kdevelop.git/commit/?id=716372ae2e8dff9c51e94d33443536786e4bd85b
|
|
# required as nixos seems to be unable to find CLANG_BUILTIN_DIR
|
|
cmakeFlags = [
|
|
"-DCLANG_BUILTIN_DIR=${llvmPackages.libclang.lib}/lib/clang/${lib.getVersion llvmPackages.clang}/include"
|
|
];
|
|
|
|
dontWrapQtApps = true;
|
|
|
|
postInstall = ''
|
|
# The kdevelop! script (shell environment) needs qdbus and kioclient5 in PATH.
|
|
wrapProgram "$out/bin/kdevelop!" \
|
|
--prefix PATH ":" "${lib.makeBinPath [ qttools kde-cli-tools ]}"
|
|
|
|
wrapQtApp "$out/bin/kdevelop"
|
|
|
|
# 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"
|
|
'';
|
|
|
|
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";
|
|
license = with licenses; [ gpl2Plus lgpl2Plus ];
|
|
};
|
|
}
|