2016-07-16 21:01:49 +01:00
|
|
|
{
|
2019-08-16 09:16:18 +01:00
|
|
|
mkDerivation, lib,
|
2017-05-17 20:26:11 +01:00
|
|
|
extra-cmake-modules, kdoctools,
|
2016-08-01 21:33:31 +01:00
|
|
|
kactivities, kconfig, kcrash, kdbusaddons, kguiaddons, kiconthemes, ki18n,
|
|
|
|
kinit, kio, kitemmodels, kjobwidgets, knewstuff, knotifications, konsole,
|
|
|
|
kparts, ktexteditor, kwindowsystem, kwallet, kxmlgui, libgit2,
|
|
|
|
plasma-framework, qtscript, threadweaver
|
2016-04-21 17:00:51 +01:00
|
|
|
}:
|
|
|
|
|
2017-05-16 16:56:41 +01:00
|
|
|
mkDerivation {
|
2020-12-24 23:05:07 +00:00
|
|
|
pname = "kate";
|
2017-05-16 16:56:41 +01:00
|
|
|
meta = {
|
|
|
|
license = with lib.licenses; [ gpl3 lgpl3 lgpl2 ];
|
|
|
|
maintainers = [ lib.maintainers.ttuegel ];
|
|
|
|
};
|
2019-08-13 19:24:55 +01:00
|
|
|
|
2020-04-27 22:39:11 +01:00
|
|
|
# InitialPreference values are too high and end up making kate &
|
|
|
|
# kwrite defaults for anything considered text/plain. Resetting to
|
|
|
|
# 1, which is the default.
|
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace kate/data/org.kde.kate.desktop \
|
|
|
|
--replace InitialPreference=9 InitialPreference=1
|
|
|
|
substituteInPlace kwrite/data/org.kde.kwrite.desktop \
|
|
|
|
--replace InitialPreference=8 InitialPreference=1
|
|
|
|
'';
|
|
|
|
|
2017-05-17 20:26:11 +01:00
|
|
|
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
|
2019-09-25 16:00:38 +01:00
|
|
|
buildInputs = [
|
|
|
|
libgit2
|
2017-05-16 16:56:41 +01:00
|
|
|
kactivities ki18n kio ktexteditor kwindowsystem plasma-framework
|
|
|
|
qtscript kconfig kcrash kguiaddons kiconthemes kinit kjobwidgets kparts
|
|
|
|
kxmlgui kdbusaddons kwallet kitemmodels knotifications threadweaver
|
2017-05-17 20:26:11 +01:00
|
|
|
knewstuff
|
2017-05-16 16:56:41 +01:00
|
|
|
];
|
|
|
|
propagatedUserEnvPkgs = [ konsole ];
|
2016-08-01 21:33:31 +01:00
|
|
|
}
|