about summary refs log tree commit diff
path: root/pkgs/applications/misc/yakuake
diff options
context:
space:
mode:
authorKirill Elagin <kirelagin@gmail.com>2015-03-16 21:54:06 +0300
committerThomas Tuegel <ttuegel@gmail.com>2015-03-21 18:57:28 -0500
commitefb4fe269e68a0624b265ea4de55c392b53b2e08 (patch)
tree1fbeff5e5675e30a357d610680e3ad21f70c2e9f /pkgs/applications/misc/yakuake
parent370e40aef5386316c78c84339d9c487ebd51c499 (diff)
downloadnixlib-efb4fe269e68a0624b265ea4de55c392b53b2e08.tar
nixlib-efb4fe269e68a0624b265ea4de55c392b53b2e08.tar.gz
nixlib-efb4fe269e68a0624b265ea4de55c392b53b2e08.tar.bz2
nixlib-efb4fe269e68a0624b265ea4de55c392b53b2e08.tar.lz
nixlib-efb4fe269e68a0624b265ea4de55c392b53b2e08.tar.xz
nixlib-efb4fe269e68a0624b265ea4de55c392b53b2e08.tar.zst
nixlib-efb4fe269e68a0624b265ea4de55c392b53b2e08.zip
Yakuake: hardcode path to konsole
Diffstat (limited to 'pkgs/applications/misc/yakuake')
-rw-r--r--pkgs/applications/misc/yakuake/default.nix6
1 files changed, 5 insertions, 1 deletions
diff --git a/pkgs/applications/misc/yakuake/default.nix b/pkgs/applications/misc/yakuake/default.nix
index c781a5619ae4..323782d60fe0 100644
--- a/pkgs/applications/misc/yakuake/default.nix
+++ b/pkgs/applications/misc/yakuake/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, kdelibs, gettext }:
+{ stdenv, fetchurl, kdelibs, gettext, konsole }:
 
 let
   pname = "yakuake";
@@ -16,6 +16,10 @@ stdenv.mkDerivation {
 
   nativeBuildInputs = [ gettext ];
 
+  patchPhase = ''
+    substituteInPlace app/terminal.cpp --replace \"konsolepart\" "\"${konsole}/lib/kde4/libkonsolepart.so\""
+  '';
+
   meta = {
     homepage = http://yakuake.kde.org;
     description = "Quad-style terminal emulator for KDE";