aboutsummaryrefslogtreecommitdiff
path: root/pkgs/tools/typesetting/tex/auctex
diff options
context:
space:
mode:
authorTuomas Tynkkynen <tuomas@tuxera.com>2016-08-02 19:19:16 +0300
committerTuomas Tynkkynen <tuomas@tuxera.com>2016-08-02 21:17:44 +0300
commit63de40099f085b20f5607db530592bbea2492da1 (patch)
treeba094a4de6d6be8b6213bdf8ddcf51563e7be1ac /pkgs/tools/typesetting/tex/auctex
parent2258b21e4b40d42cbe36fd4b5946c19861a9ff95 (diff)
treewide: Move some meta sections to end-of-file
That seems to be the overwhelming convention.
Diffstat (limited to 'pkgs/tools/typesetting/tex/auctex')
-rw-r--r--pkgs/tools/typesetting/tex/auctex/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/tools/typesetting/tex/auctex/default.nix b/pkgs/tools/typesetting/tex/auctex/default.nix
index 0d2282a4fd8f..7707bece0ba1 100644
--- a/pkgs/tools/typesetting/tex/auctex/default.nix
+++ b/pkgs/tools/typesetting/tex/auctex/default.nix
@@ -12,11 +12,6 @@ let auctex = stdenv.mkDerivation ( rec {
outputs = [ "out" "tex" ];
- meta = {
- description = "Extensible package for writing and formatting TeX files in GNU Emacs and XEmacs";
- homepage = http://www.gnu.org/software/auctex;
- };
-
src = fetchurl {
url = "mirror://gnu/${pname}/${name}.tar.gz";
sha256 = "1cf9fkkmzjxa4jvk6c01zgxdikr4zzb5pcx8i4r0hwdk0xljkbwq";
@@ -32,6 +27,11 @@ let auctex = stdenv.mkDerivation ( rec {
"--with-lispdir=\${out}/share/emacs/site-lisp"
"--with-texmf-dir=\${tex}"
];
+
+ meta = {
+ description = "Extensible package for writing and formatting TeX files in GNU Emacs and XEmacs";
+ homepage = http://www.gnu.org/software/auctex;
+ };
});
in auctex // { pkgs = [ auctex.tex ]; }