summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorFrederik Rietdijk <freddyrietdijk@fridh.nl>2017-05-26 08:46:16 +0200
committerGitHub <noreply@github.com>2017-05-26 08:46:16 +0200
commitcb7efeabc1b9d5963a7e837f25686c12f39308b9 (patch)
treed3685c209cb42b829290f85d6d18560810495f09 /pkgs/applications
parent6ab7038d2733ad8c9da2bfad53ab5e80c137712c (diff)
parent028f259ce24a754824d135975392841f15c40946 (diff)
downloadnixlib-cb7efeabc1b9d5963a7e837f25686c12f39308b9.tar
nixlib-cb7efeabc1b9d5963a7e837f25686c12f39308b9.tar.gz
nixlib-cb7efeabc1b9d5963a7e837f25686c12f39308b9.tar.bz2
nixlib-cb7efeabc1b9d5963a7e837f25686c12f39308b9.tar.lz
nixlib-cb7efeabc1b9d5963a7e837f25686c12f39308b9.tar.xz
nixlib-cb7efeabc1b9d5963a7e837f25686c12f39308b9.tar.zst
nixlib-cb7efeabc1b9d5963a7e837f25686c12f39308b9.zip
Merge pull request #26063 from bkchr/update_yakuake_fix_dot_desktop
Updates Yakuake to version 3.0.3 and exposes the .desktop
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/misc/yakuake/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/misc/yakuake/default.nix b/pkgs/applications/misc/yakuake/default.nix
index 0d9f3834c615..c8fa02ac8179 100644
--- a/pkgs/applications/misc/yakuake/default.nix
+++ b/pkgs/applications/misc/yakuake/default.nix
@@ -20,13 +20,13 @@
 let
   unwrapped = let
     pname = "yakuake";
-    version = "3.0.2";
+    version = "3.0.3";
   in kdeDerivation rec {
     name = "${pname}-${version}";
 
     src = fetchurl {
       url = "http://download.kde.org/stable/${pname}/${version}/src/${name}.tar.xz";
-      sha256 = "0vcdji1k8d3pz7k6lkw8ighkj94zff2l2cf9v1avf83f4hjyfhg5";
+      sha256 = "ef51aa3325916d352fde17870cf706397e41105103e4c9289cc4032a1b8609a7";
     };
 
     buildInputs = [
@@ -58,6 +58,6 @@ in
 kdeWrapper
 {
   inherit unwrapped;
-  targets = [ "bin/yakuake" ];
+  targets = [ "bin/yakuake" "share/applications/org.kde.yakuake.desktop" ];
   paths = [ konsole.unwrapped ];
 }