mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-04 03:03:42 +00:00
4f0dadbf38
After final improvements to the official formatter implementation, this commit now performs the first treewide reformat of Nix files using it. This is part of the implementation of RFC 166. Only "inactive" files are reformatted, meaning only files that aren't being touched by any PR with activity in the past 2 months. This is to avoid conflicts for PRs that might soon be merged. Later we can do a full treewide reformat to get the rest, which should not cause as many conflicts. A CI check has already been running for some time to ensure that new and already-formatted files are formatted, so the files being reformatted here should also stay formatted. This commit was automatically created and can be verified using nix-builda08b3a4d19
.tar.gz \ --argstr baseRevb32a094368
result/bin/apply-formatting $NIXPKGS_PATH
146 lines
2.8 KiB
Nix
146 lines
2.8 KiB
Nix
{
|
|
mkDerivation,
|
|
lib,
|
|
cmake,
|
|
gettext,
|
|
pkg-config,
|
|
extra-cmake-modules,
|
|
qtquickcontrols,
|
|
qttools,
|
|
kde-cli-tools,
|
|
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_13,
|
|
makeWrapper,
|
|
kpurpose,
|
|
boost,
|
|
qtwebengine,
|
|
cppcheck,
|
|
}:
|
|
|
|
let
|
|
llvmPackages = llvmPackages_13;
|
|
in
|
|
mkDerivation rec {
|
|
pname = "kdevelop";
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
gettext
|
|
pkg-config
|
|
extra-cmake-modules
|
|
makeWrapper
|
|
];
|
|
|
|
buildInputs = [
|
|
kdevelop-pg-qt
|
|
llvmPackages.llvm
|
|
llvmPackages.libclang
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
qtquickcontrols
|
|
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
|
|
cppcheck
|
|
qtwebengine
|
|
];
|
|
|
|
# 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=${lib.getLib llvmPackages.libclang}/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
|
|
programming 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
|
|
];
|
|
};
|
|
}
|