nixpkgs/pkgs/applications/kde/konsole.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
925 B
Nix
Raw Normal View History

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