Install the emacs syntax highlighter for taskJuggler.

svn path=/nixpkgs/trunk/; revision=11944
This commit is contained in:
Nicolas Pierron 2008-06-01 16:06:09 +00:00
parent 898f448073
commit 6f08adf32b

View File

@ -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";