nixpkgs/pkgs/tools/typesetting/bibtex-tools/default.nix
Eelco Visser 009cda1fb2 version 0.1 of bibtex-tools
svn path=/nixpkgs/trunk/; revision=1285
2004-08-17 11:53:31 +00:00

14 lines
402 B
Nix

{stdenv, fetchurl, hevea, strategoxt, aterm, sdf}:
stdenv.mkDerivation {
name = "bibtex-tools-0.1";
builder = ./builder.sh;
src = fetchurl {
url = http://www.cs.uu.nl/~visser/ftp/bibtex-tools-0.1.tar.gz;
md5 = "8e3ce277100af6fceec23f5bed4aa9e8";
};
inherit aterm hevea strategoxt;
inherit (sdf) sglr pgen ptsupport asflibrary;
buildInputs = [aterm sdf.pgen strategoxt hevea];
}