forked from mirrors/nixpkgs
Added auctex from mailing list
svn path=/nixpkgs/trunk/; revision=9345
This commit is contained in:
parent
be56c058e4
commit
b67ce21440
14
pkgs/misc/tex/auctex/default.nix
Normal file
14
pkgs/misc/tex/auctex/default.nix
Normal file
|
@ -0,0 +1,14 @@
|
|||
{ 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";
|
||||
};
|
||||
buildInputs = [ emacs tetex ];
|
||||
}
|
Loading…
Reference in a new issue