nixpkgs-suyu/pkgs/development/compilers/strategoxt/strategoxt-0.11.nix
Eelco Visser 103f769310 - Some recent StrategoXT distributions
- Build ocaml with x11 support 


svn path=/nixpkgs/trunk/; revision=1190
2004-07-28 11:16:25 +00:00

12 lines
321 B
Nix

{stdenv, fetchurl, aterm, sdf}:
stdenv.mkDerivation {
name = "strategoxt-0.11";
builder = ./builder.sh;
src = fetchurl {
url = ftp://ftp.stratego-language.org/pub/stratego/StrategoXT/strategoxt-0.11.tar.gz;
md5 = "bf6c38179f6883b01fa3e548c4f45f1c";
};
inherit aterm sdf;
buildInputs = [aterm sdf];
}