From c544eb4c713caff1faa92312a2c45fa0aa3cbbcf Mon Sep 17 00:00:00 2001 From: aszlig Date: Sun, 9 Sep 2012 05:55:17 +0200 Subject: [PATCH] tkabber: Set the correct path to tkabber-plugins. This should now point to the path for the tkabber plugins package, which will be used as soon as the tkabber-plugins derivation is available as a symlink in the user's environment. Signed-off-by: aszlig --- .../networking/instant-messengers/tkabber/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/applications/networking/instant-messengers/tkabber/default.nix b/pkgs/applications/networking/instant-messengers/tkabber/default.nix index 6d0036c39b3..3b6547a8be9 100644 --- a/pkgs/applications/networking/instant-messengers/tkabber/default.nix +++ b/pkgs/applications/networking/instant-messengers/tkabber/default.nix @@ -35,7 +35,9 @@ in stdenv.mkDerivation rec { ''; postInstall = '' - wrapProgram $out/bin/tkabber --set TCLLIBPATH '"${tclLibPaths}"' + wrapProgram $out/bin/tkabber \ + --set TCLLIBPATH '"${tclLibPaths}"' \ + --set TKABBER_SITE_PLUGINS '$HOME/.nix-profile/share/tkabber-plugins' ''; buildInputs = [ tcl tk x11 makeWrapper ] ++ tclLibraries;