summary refs log tree commit diff
path: root/pkgs/tools/typesetting/tex/auctex
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2012-02-04 09:31:07 +0000
committerPeter Simons <simons@cryp.to>2012-02-04 09:31:07 +0000
commitb69d6bf7e099a6d8e5bec8dd2a1d337d3fcd4a3b (patch)
treedae06b8d3eb2404f7045e567c8610e4d43d82f2b /pkgs/tools/typesetting/tex/auctex
parentdbafd99a0aaa3b65067cf48d840353f230327368 (diff)
downloadnixlib-b69d6bf7e099a6d8e5bec8dd2a1d337d3fcd4a3b.tar
nixlib-b69d6bf7e099a6d8e5bec8dd2a1d337d3fcd4a3b.tar.gz
nixlib-b69d6bf7e099a6d8e5bec8dd2a1d337d3fcd4a3b.tar.bz2
nixlib-b69d6bf7e099a6d8e5bec8dd2a1d337d3fcd4a3b.tar.lz
nixlib-b69d6bf7e099a6d8e5bec8dd2a1d337d3fcd4a3b.tar.xz
nixlib-b69d6bf7e099a6d8e5bec8dd2a1d337d3fcd4a3b.tar.zst
nixlib-b69d6bf7e099a6d8e5bec8dd2a1d337d3fcd4a3b.zip
Moved all LaTeX expressions into tools/typesetting hierarchy.
svn path=/nixpkgs/trunk/; revision=32028
Diffstat (limited to 'pkgs/tools/typesetting/tex/auctex')
-rw-r--r--pkgs/tools/typesetting/tex/auctex/default.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/tools/typesetting/tex/auctex/default.nix b/pkgs/tools/typesetting/tex/auctex/default.nix
new file mode 100644
index 000000000000..6ca85167aeda
--- /dev/null
+++ b/pkgs/tools/typesetting/tex/auctex/default.nix
@@ -0,0 +1,24 @@
+{ stdenv, fetchurl, emacs, texLive }:
+ 
+stdenv.mkDerivation ( rec {
+  pname = "auctex";
+  version = "11.85";
+  name = "${pname}-${version}";
+
+  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/${pname}/${name}.tar.gz";
+    sha256 = "aebbea00431f8fd1e6be6519d9cc28e974942000737f956027da2c952a6d304e";
+  };
+
+  buildInputs = [ emacs texLive ];
+
+  configureFlags = [
+    "--with-lispdir=\${out}/share/emacs/site-lisp"
+    "--disable-preview"
+  ];
+})