nixpkgs/pkgs/applications/kde/konsole.nix

27 lines
925 B
Nix
Raw Normal View History

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