2016-07-30 05:13:00 +03:00
|
|
|
{
|
2020-11-13 21:54:56 +03:00
|
|
|
mkDerivation, lib, nixosTests,
|
2017-05-17 22:26:11 +03:00
|
|
|
extra-cmake-modules, kdoctools,
|
2016-07-30 05:13:00 +03:00
|
|
|
kbookmarks, kcompletion, kconfig, kconfigwidgets, kcoreaddons, kguiaddons,
|
2021-05-11 23:33:11 +03:00
|
|
|
ki18n, kiconthemes, kinit, kio, knotifications,
|
2016-07-30 05:13:00 +03:00
|
|
|
knotifyconfig, kparts, kpty, kservice, ktextwidgets, kwidgetsaddons,
|
2023-03-18 01:39:35 +03:00
|
|
|
kwindowsystem, kxmlgui, qtscript, knewstuff, qtmultimedia
|
2016-04-21 19:00:51 +03:00
|
|
|
}:
|
|
|
|
|
2017-05-16 18:56:41 +03:00
|
|
|
mkDerivation {
|
2020-12-25 02:05:07 +03:00
|
|
|
pname = "konsole";
|
2017-05-16 18:56:41 +03:00
|
|
|
meta = {
|
2021-09-18 12:48:23 +03:00
|
|
|
homepage = "https://apps.kde.org/konsole/";
|
|
|
|
description = "KDE terminal emulator";
|
2022-10-27 23:47:29 +03:00
|
|
|
license = with lib.licenses; [ gpl2Plus lgpl21Plus fdl12Plus ];
|
2023-08-17 18:20:18 +03:00
|
|
|
maintainers = with lib.maintainers; [ ttuegel ];
|
2017-05-16 18:56:41 +03:00
|
|
|
};
|
2017-05-17 22:26:11 +03:00
|
|
|
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
|
2017-06-21 16:51:31 +03:00
|
|
|
buildInputs = [
|
2021-05-11 23:33:11 +03:00
|
|
|
kbookmarks kcompletion kconfig kconfigwidgets kcoreaddons
|
2017-06-21 16:51:31 +03:00
|
|
|
kguiaddons ki18n kiconthemes kinit kio knotifications knotifyconfig kparts kpty
|
2023-03-18 01:39:35 +03:00
|
|
|
kservice ktextwidgets kwidgetsaddons kwindowsystem kxmlgui qtscript knewstuff qtmultimedia
|
2017-05-16 18:56:41 +03:00
|
|
|
];
|
2018-12-03 01:42:27 +03:00
|
|
|
|
2020-11-13 21:54:56 +03:00
|
|
|
passthru.tests.test = nixosTests.terminal-emulators.konsole;
|
|
|
|
|
2017-08-04 11:58:44 +03:00
|
|
|
propagatedUserEnvPkgs = [ (lib.getBin kinit) ];
|
2017-01-03 02:33:15 +03:00
|
|
|
}
|