nixpkgs/pkgs/applications/kde/konsole.nix

27 lines
925 B
Nix
Raw Normal View History

{
2019-09-23 18:06:43 +03:00
mkDerivation, lib,
2017-05-17 22:26:11 +03:00
extra-cmake-modules, kdoctools,
kbookmarks, kcompletion, kconfig, kconfigwidgets, kcoreaddons, kguiaddons,
ki18n, kiconthemes, kinit, kio, knotifications,
knotifyconfig, kparts, kpty, kservice, ktextwidgets, kwidgetsaddons,
kwindowsystem, kxmlgui, qtscript, knewstuff
}:
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 = {
homepage = "https://apps.kde.org/konsole/";
description = "KDE terminal emulator";
2017-05-16 18:56:41 +03:00
license = with lib.licenses; [ gpl2 lgpl21 fdl12 ];
maintainers = with lib.maintainers; [ ttuegel turion ];
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 = [
kbookmarks kcompletion kconfig kconfigwidgets kcoreaddons
2017-06-21 16:51:31 +03:00
kguiaddons ki18n kiconthemes kinit kio knotifications knotifyconfig kparts kpty
2018-04-20 17:24:00 +03:00
kservice ktextwidgets kwidgetsaddons kwindowsystem kxmlgui qtscript knewstuff
2017-05-16 18:56:41 +03:00
];
propagatedUserEnvPkgs = [ (lib.getBin kinit) ];
}