summary refs log tree commit diff
path: root/pkgs/tools/typesetting/bibtex-tools
diff options
context:
space:
mode:
authorEelco Visser <visser@acm.org>2005-05-31 08:11:54 +0000
committerEelco Visser <visser@acm.org>2005-05-31 08:11:54 +0000
commit3385ccd1f769abba781e35d86484bce0a2534f42 (patch)
tree043c77a3a8a80daeddfdc85f8f8c584332f10190 /pkgs/tools/typesetting/bibtex-tools
parentfbdbdb710511493cf3b5c0f2849c168f9a187bed (diff)
downloadnixlib-3385ccd1f769abba781e35d86484bce0a2534f42.tar
nixlib-3385ccd1f769abba781e35d86484bce0a2534f42.tar.gz
nixlib-3385ccd1f769abba781e35d86484bce0a2534f42.tar.bz2
nixlib-3385ccd1f769abba781e35d86484bce0a2534f42.tar.lz
nixlib-3385ccd1f769abba781e35d86484bce0a2534f42.tar.xz
nixlib-3385ccd1f769abba781e35d86484bce0a2534f42.tar.zst
nixlib-3385ccd1f769abba781e35d86484bce0a2534f42.zip
use tetex
svn path=/nixpkgs/trunk/; revision=3164
Diffstat (limited to 'pkgs/tools/typesetting/bibtex-tools')
-rw-r--r--pkgs/tools/typesetting/bibtex-tools/builder.sh2
-rw-r--r--pkgs/tools/typesetting/bibtex-tools/default.nix4
2 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/tools/typesetting/bibtex-tools/builder.sh b/pkgs/tools/typesetting/bibtex-tools/builder.sh
index fb0e1f526ee7..acdecca0665f 100644
--- a/pkgs/tools/typesetting/bibtex-tools/builder.sh
+++ b/pkgs/tools/typesetting/bibtex-tools/builder.sh
@@ -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
diff --git a/pkgs/tools/typesetting/bibtex-tools/default.nix b/pkgs/tools/typesetting/bibtex-tools/default.nix
index b60c25db5433..e98a96969d4d 100644
--- a/pkgs/tools/typesetting/bibtex-tools/default.nix
+++ b/pkgs/tools/typesetting/bibtex-tools/default.nix
@@ -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];
 }