summary refs log tree commit diff
path: root/pkgs/applications/misc/taskjuggler
diff options
context:
space:
mode:
authorNicolas Pierron <nicolas.b.pierron@gmail.com>2008-06-01 16:06:09 +0000
committerNicolas Pierron <nicolas.b.pierron@gmail.com>2008-06-01 16:06:09 +0000
commit6f08adf32bd2e547241db562593f6ea5271f4eff (patch)
treeab0628355e4d7c1b410dc772b50f414816994425 /pkgs/applications/misc/taskjuggler
parent898f44807382a057d631fa427f496e8ae9b7cc13 (diff)
downloadnixpkgs-6f08adf32bd2e547241db562593f6ea5271f4eff.tar
nixpkgs-6f08adf32bd2e547241db562593f6ea5271f4eff.tar.gz
nixpkgs-6f08adf32bd2e547241db562593f6ea5271f4eff.tar.bz2
nixpkgs-6f08adf32bd2e547241db562593f6ea5271f4eff.tar.lz
nixpkgs-6f08adf32bd2e547241db562593f6ea5271f4eff.tar.xz
nixpkgs-6f08adf32bd2e547241db562593f6ea5271f4eff.tar.zst
nixpkgs-6f08adf32bd2e547241db562593f6ea5271f4eff.zip
Install the emacs syntax highlighter for taskJuggler.
svn path=/nixpkgs/trunk/; revision=11944
Diffstat (limited to 'pkgs/applications/misc/taskjuggler')
-rw-r--r--pkgs/applications/misc/taskjuggler/default.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/pkgs/applications/misc/taskjuggler/default.nix b/pkgs/applications/misc/taskjuggler/default.nix
index 27db42160d2..3812f7edd97 100644
--- a/pkgs/applications/misc/taskjuggler/default.nix
+++ b/pkgs/applications/misc/taskjuggler/default.nix
@@ -44,6 +44,11 @@ stdenv.mkDerivation rec {
     --with-kde-support=${if withKde then "yes" else "no"}
   ";
 
+  preInstall = ''
+    mkdir -p $out/share/emacs/site-lisp/
+    cp Contrib/emacs/taskjug.el $out/share/emacs/site-lisp/
+  '';
+
   installFlags =
     # kde_locale is not defined when installing without kde.
     if withKde then "" else "kde_locale=\${out}/share/locale";