Skip to content

Commit

Permalink
Merge pull request #51412 from Synthetica9/konsole-keyboard-fix
Browse files Browse the repository at this point in the history
konsole: fix arrow keys
  • Loading branch information
Mic92 authored Jan 9, 2019
2 parents e6ca0fb + 4ec643b commit f0f7531
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion pkgs/applications/kde/konsole.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
mkDerivation, lib,
mkDerivation, lib, makeWrapper,
extra-cmake-modules, kdoctools,
kbookmarks, kcompletion, kconfig, kconfigwidgets, kcoreaddons, kguiaddons,
ki18n, kiconthemes, kinit, kdelibs4support, kio, knotifications,
Expand All @@ -18,6 +18,12 @@ mkDerivation {
kbookmarks kcompletion kconfig kconfigwidgets kcoreaddons kdelibs4support
kguiaddons ki18n kiconthemes kinit kio knotifications knotifyconfig kparts kpty
kservice ktextwidgets kwidgetsaddons kwindowsystem kxmlgui qtscript knewstuff
makeWrapper
];

postInstall = ''
wrapProgram $out/bin/konsole --prefix XDG_DATA_DIRS ":" $out/share
'';

propagatedUserEnvPkgs = [ (lib.getBin kinit) ];
}

0 comments on commit f0f7531

Please sign in to comment.