nixpkgs/pkgs/tools/typesetting/bibtex-tools/default.nix
Eelco Dolstra acba9240cd nixos.org/tarballs -> tarballs.nixos.org
It's currently the same machine, but tarballs.nixos.org should become
an S3/CloudFront site eventually.
2013-06-25 14:12:16 +02:00

17 lines
465 B
Nix

{stdenv, fetchurl, hevea, tetex, strategoxt, aterm, sdf}:
stdenv.mkDerivation {
name = "bibtex-tools-0.2pre13026";
src = fetchurl {
url = http://tarballs.nixos.org/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];
}