nixpkgs/pkgs/applications/kde/kate.nix

35 lines
1.1 KiB
Nix
Raw Normal View History

2016-07-16 20:01:49 +00:00
{
2019-08-13 18:24:55 +00:00
mkDerivation, lib, fetchpatch,
2017-05-17 19:26:11 +00:00
extra-cmake-modules, kdoctools,
2016-08-01 20:33:31 +00: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
}:
2017-05-16 15:56:41 +00:00
mkDerivation {
name = "kate";
meta = {
license = with lib.licenses; [ gpl3 lgpl3 lgpl2 ];
maintainers = [ lib.maintainers.ttuegel ];
};
2019-08-13 18:24:55 +00:00
patches = [
# This patch should be backported in 19.04.4 KDE applications
(fetchpatch {
url = "https://cgit.kde.org/kate.git/patch/?id=76ec8b55a86a29a90125b2ff3f512df007789cb1";
sha256 = "1q0bkb6vl4xvh4aba1rlqii4a75pvl7vbcs4plny8lalzslnbzhj";
})
];
2017-05-17 19:26:11 +00:00
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
buildInputs = [ libgit2 ];
2017-05-16 15:56:41 +00:00
propagatedBuildInputs = [
kactivities ki18n kio ktexteditor kwindowsystem plasma-framework
qtscript kconfig kcrash kguiaddons kiconthemes kinit kjobwidgets kparts
kxmlgui kdbusaddons kwallet kitemmodels knotifications threadweaver
2017-05-17 19:26:11 +00:00
knewstuff
2017-05-16 15:56:41 +00:00
];
propagatedUserEnvPkgs = [ konsole ];
2016-08-01 20:33:31 +00:00
}