summary refs log tree commit diff
path: root/pkgs/misc/tex/auctex/default.nix
blob: 117ccf9e3dacd24185dd5587d15df10af54b31ec (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ stdenv, fetchurl, emacs, tetex }:
 
stdenv.mkDerivation {
  name = "auctex-11.84";
  meta = {
    description = "AUCTeX is an extensible package for writing and formatting TeX files in GNU Emacs and XEmacs.";
    homepage = http://www.gnu.org/software/auctex;
  };
  src = fetchurl {
    url = http://ftp.gnu.org/pub/gnu/auctex/auctex-11.84.tar.gz;
    md5 = "73970c51221524442c11cde13d0584e9";
  };
  configureFlags="--with-lispdir=\${out}/emacs/site-lisp --disable-preview";
  buildInputs = [ emacs tetex ];
}