summary refs log tree commit diff
path: root/pkgs/development/compilers/strategoxt/strategoxt-0.12.nix
blob: 2672fca17d826dcf724a566dbb200e592dc641ee (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{stdenv, fetchurl, aterm, sdf}:

stdenv.mkDerivation {
  name = "strategoxt-0.12";
  builder = ./builder.sh;

  src = fetchurl {
    url = ftp://ftp.stratego-language.org/pub/stratego/StrategoXT/strategoxt-0.12.tar.gz;
    md5 = "bc2b14d9b53a07fc0047c16f2c6edf0c";
  };

  inherit aterm sdf;
  buildInputs = [aterm sdf];
}