version 0.1 of bibtex-tools

svn path=/nixpkgs/trunk/; revision=1285
This commit is contained in:
Eelco Visser 2004-08-17 11:53:31 +00:00
parent 92fbc10356
commit 009cda1fb2
3 changed files with 23 additions and 0 deletions

View file

@ -315,6 +315,11 @@ rec {
sdf = sdf_22;
};
bibtextools = (import ../tools/typesetting/bibtex-tools) {
inherit fetchurl stdenv aterm strategoxt hevea;
sdf = sdf_22;
};
#strategoxtsvn = (import ../development/compilers/strategoxt/trunk.nix) {
# inherit fetchsvn stdenv autoconf automake libtool which aterm;
# sdf = sdf_22;

View file

@ -0,0 +1,5 @@
. $stdenv/setup
configureFlags="--with-aterm=$aterm --with-sglr=$sglr --with-pgen=$pgen
--with-pt-support=$ptsupport --with-asf-library=$asflibrary --with-strategoxt=$strategoxt --with-hevea=$hevea --with-latex=/usr"
genericBuild

View file

@ -0,0 +1,13 @@
{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];
}