From 29711967a2b4afef9311f195b84757a42e60849b Mon Sep 17 00:00:00 2001 From: Benjamin Staffin Date: Fri, 19 Feb 2016 14:54:00 -0800 Subject: [PATCH 1/2] openssh: update gssapi patch to match openssh version Should fix the openssh_with_kerberos build. Fixes #13140 (cherry picked from commit 3dae6c7e1e1eb64b3ceb2796eea1ad0ae1596688) --- pkgs/tools/networking/openssh/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/networking/openssh/default.nix b/pkgs/tools/networking/openssh/default.nix index 73e92aa4b8e..a6aed5169c8 100644 --- a/pkgs/tools/networking/openssh/default.nix +++ b/pkgs/tools/networking/openssh/default.nix @@ -16,8 +16,8 @@ let }; gssapiSrc = fetchpatch { - url = "http://anonscm.debian.org/cgit/pkg-ssh/openssh.git/plain/debian/patches/gssapi.patch?h=debian/6.9p1-3"; - sha256 = "03zlgkb3a1igj20kn8cz55ggaxg65h6f0kg20m39m0wsb94qjdb1"; + url = "http://anonscm.debian.org/cgit/pkg-ssh/openssh.git/plain/debian/patches/gssapi.patch?h=debian/7.1p2-2"; + sha256 = "05nsch879nlpyyiwm240wlq9rasy71j9d03j1rfi8kp865zhjfbm"; }; in From a7d64fef3851dbbf91feadd04e9a9d53e8ca4f07 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Romildo=20Malaquias?= Date: Sun, 21 Feb 2016 09:24:43 -0300 Subject: [PATCH 2/2] xfce4-whiskermenu-plugin: fix xfce4-panel path in xfce4-popup-whiskermenu script --- .../desktops/xfce/panel-plugins/xfce4-whiskermenu-plugin.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/desktops/xfce/panel-plugins/xfce4-whiskermenu-plugin.nix b/pkgs/desktops/xfce/panel-plugins/xfce4-whiskermenu-plugin.nix index 420eb128a42..79e84f6470a 100644 --- a/pkgs/desktops/xfce/panel-plugins/xfce4-whiskermenu-plugin.nix +++ b/pkgs/desktops/xfce/panel-plugins/xfce4-whiskermenu-plugin.nix @@ -20,6 +20,11 @@ stdenv.mkDerivation rec { buildInputs = [ cmake pkgconfig intltool libxfce4util libxfcegui4 xfce4panel gtk exo garcon ]; + preFixup = '' + substituteInPlace $out/bin/xfce4-popup-whiskermenu \ + --replace $out/bin/xfce4-panel ${xfce4panel}/bin/xfce4-panel + ''; + meta = { homepage = "http://goodies.xfce.org/projects/panel-plugins/${p_name}"; description = "Whisker Menu is an alternate application launcher for Xfce.";