Added StrategoXT 0.13. StrategoXT 0.12 is still available

svn path=/nixpkgs/trunk/; revision=2039
This commit is contained in:
Martin Bravenboer 2005-01-14 21:26:18 +00:00
parent c8c0c50eb2
commit a1f2fad0fe
3 changed files with 24 additions and 1 deletions

View File

@ -1,2 +1,2 @@
import ./strategoxt-0.12.nix
import ./strategoxt-0.13.nix

View File

@ -0,0 +1,18 @@
{stdenv, fetchurl, aterm, sdf}:
stdenv.mkDerivation {
name = "strategoxt-0.13";
builder = ./builder.sh;
src = fetchurl {
url = ftp://ftp.stratego-language.org/pub/stratego/StrategoXT/strategoxt-0.13/strategoxt-0.13.tar.gz;
md5 = "783bea5d5ebc0604e7ecf5bfb8f7f7b1";
};
inherit aterm;
inherit (sdf) sglr pgen ptsupport asflibrary;
buildInputs = [aterm sdf.pgen];
}

View File

@ -386,6 +386,11 @@ rec {
sdf = sdf_23;
};
strategoxt_012 = (import ../development/compilers/strategoxt/strategoxt-0.12.nix) {
inherit fetchurl stdenv aterm;
sdf = sdf_22;
};
bibtextools = (import ../tools/typesetting/bibtex-tools) {
inherit fetchurl stdenv aterm strategoxt hevea;
sdf = sdf_23;