d6a1bfe1dc
contains everything you could possibly need, including beamer ;-) This teTeX has been built without X11 support, meaning that xdvi is not included. svn path=/nixpkgs/trunk/; revision=2931
21 lines
383 B
Bash
21 lines
383 B
Bash
. $stdenv/setup
|
|
|
|
postUnpack=postUnpack
|
|
postUnpack() {
|
|
ensureDir $out/share/texmf
|
|
ensureDir $out/share/texmf-dist
|
|
gunzip < $texmf | (cd $out/share/texmf-dist && tar xvf -)
|
|
}
|
|
|
|
configureFlags="\
|
|
--disable-multiplatform \
|
|
--without-x11 \
|
|
--without-xdvik \
|
|
--without-oxdvik \
|
|
--with-system-zlib \
|
|
--with-system-pnglib \
|
|
--with-system-ncurses \
|
|
"
|
|
|
|
genericBuild
|