summary refs log tree commit diff
path: root/pkgs/applications/networking/instant-messengers/tkabber
diff options
context:
space:
mode:
authoraszlig <aszlig@redmoonstudios.org>2012-09-09 05:55:17 +0200
committeraszlig <aszlig@redmoonstudios.org>2012-09-09 07:00:00 +0200
commitc544eb4c713caff1faa92312a2c45fa0aa3cbbcf (patch)
treef009466dd24e9827e229cf119a1eccd54c687cb0 /pkgs/applications/networking/instant-messengers/tkabber
parente18227378a3983dc1f23cc67fc6798c3a50ebb9f (diff)
downloadnixlib-c544eb4c713caff1faa92312a2c45fa0aa3cbbcf.tar
nixlib-c544eb4c713caff1faa92312a2c45fa0aa3cbbcf.tar.gz
nixlib-c544eb4c713caff1faa92312a2c45fa0aa3cbbcf.tar.bz2
nixlib-c544eb4c713caff1faa92312a2c45fa0aa3cbbcf.tar.lz
nixlib-c544eb4c713caff1faa92312a2c45fa0aa3cbbcf.tar.xz
nixlib-c544eb4c713caff1faa92312a2c45fa0aa3cbbcf.tar.zst
nixlib-c544eb4c713caff1faa92312a2c45fa0aa3cbbcf.zip
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 <aszlig@redmoonstudios.org>
Diffstat (limited to 'pkgs/applications/networking/instant-messengers/tkabber')
-rw-r--r--pkgs/applications/networking/instant-messengers/tkabber/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/applications/networking/instant-messengers/tkabber/default.nix b/pkgs/applications/networking/instant-messengers/tkabber/default.nix
index 6d0036c39b35..3b6547a8be90 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;