nixpkgs/pkgs/tools/typesetting/bibtex-tools/default.nix
Eelco Dolstra 4acfb1a684 * More examples of interpolation.
svn path=/nixpkgs/trunk/; revision=5244
2006-05-01 15:25:17 +00:00

17 lines
473 B
Nix

{stdenv, fetchurl, hevea, tetex, strategoxt, aterm, sdf}:
stdenv.mkDerivation {
name = "bibtex-tools-0.2pre13026";
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/bibtex-tools-0.2pre13026.tar.gz;
md5 = "2d8a5de7c53eb670307048eb3d14cdd6";
};
configureFlags = "
--with-aterm=${aterm}
--with-sdf=${sdf}
--with-strategoxt=${strategoxt}
--with-hevea=${hevea}
--with-latex=${tetex}";
buildInputs = [aterm sdf strategoxt hevea];
}