nixpkgs/pkgs/development/compilers/strategoxt/strategoxt-0.12.nix

15 lines
323 B
Nix

{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];
}