summary refs log blame commit diff
path: root/pkgs/development/compilers/strategoxt/strategoxt-0.12.nix
blob: 350b8909d16e5fbc54257a4e6c1cfcc14a1f3cc5 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

















                                                                                         
{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;
  inherit (sdf) sglr pgen ptsupport asflibrary;

  buildInputs = [aterm sdf.pgen];
}