From aeee493704dccb1e0ec79f0c763bdb0347d6de75 Mon Sep 17 00:00:00 2001 From: Your Name Date: Wed, 10 Feb 2016 10:48:51 +0100 Subject: Bugfix: ssvnc had a hard dependency on /usr/bin/perl which is now replaced --- pkgs/applications/networking/remote/ssvnc/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'pkgs/applications/networking') diff --git a/pkgs/applications/networking/remote/ssvnc/default.nix b/pkgs/applications/networking/remote/ssvnc/default.nix index fad7ef90ceb5..956391b71f86 100644 --- a/pkgs/applications/networking/remote/ssvnc/default.nix +++ b/pkgs/applications/networking/remote/ssvnc/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, imake, zlib, jdk, libX11, libXt, libXmu -, libXaw, libXext, libXpm, openjpeg, openssl, tcl, tk }: +, libXaw, libXext, libXpm, openjpeg, openssl, tcl, tk, perl }: stdenv.mkDerivation rec { name = "ssvnc-${version}"; @@ -16,6 +16,7 @@ stdenv.mkDerivation rec { postInstall = '' sed -i -e 's|exec wish|exec ${tk}/bin/wish|' $out/lib/ssvnc/util/ssvnc.tcl + sed -i -e 's|/usr/bin/perl|${perl}/bin/perl|' $out/lib/ssvnc/util/ss_vncviewer ''; meta = { -- cgit 1.4.1