about summary refs log tree commit diff
path: root/pkgs/development/compilers/strategoxt/strategoxt-0.9.5.nix
blob: f608cb47c5cf2fd7846769b2372f573a1b5afc9f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{stdenv, fetchurl, aterm, sdf}: derivation {
  name = "strategoxt-0.9.5";
  system = stdenv.system;
  builder = ./builder.sh;
  src = fetchurl {
    url = ftp://ftp.stratego-language.org/pub/stratego/StrategoXT/strategoxt-0.9.5.tar.gz;
    md5 = "c3caea5c05f8d8439450866b6d5664df";
  };
  inherit stdenv aterm sdf;
  tarfile = "true";
  dir = "strategoxt";
}