use tetex

svn path=/nixpkgs/trunk/; revision=3164
This commit is contained in:
Eelco Visser 2005-05-31 08:11:54 +00:00
parent fbdbdb7105
commit 3385ccd1f7
3 changed files with 4 additions and 4 deletions

View File

@ -437,7 +437,7 @@ rec {
};
bibtextools = (import ../tools/typesetting/bibtex-tools) {
inherit fetchurl stdenv aterm strategoxt hevea sdf;
inherit fetchurl stdenv aterm strategoxt tetex hevea sdf;
};
# xdoc = (import ../development/tools/documentation/xdoc) {

View File

@ -1,4 +1,4 @@
. $stdenv/setup
configureFlags="--with-aterm=$aterm --with-sdf=$sdf --with-strategoxt=$strategoxt --with-hevea=$hevea --with-latex=/usr"
configureFlags="--with-aterm=$aterm --with-sdf=$sdf --with-strategoxt=$strategoxt --with-hevea=$hevea --with-latex=$tetex"
genericBuild

View File

@ -1,4 +1,4 @@
{stdenv, fetchurl, hevea, strategoxt, aterm, sdf}:
{stdenv, fetchurl, hevea, tetex, strategoxt, aterm, sdf}:
stdenv.mkDerivation {
name = "bibtex-tools-0.1";
@ -7,6 +7,6 @@ stdenv.mkDerivation {
url = http://www.cs.uu.nl/~visser/ftp/bibtex-tools-0.1.tar.gz;
md5 = "8e3ce277100af6fceec23f5bed4aa9e8";
};
inherit aterm hevea sdf strategoxt;
inherit aterm tetex hevea sdf strategoxt;
buildInputs = [aterm sdf strategoxt hevea];
}