nixpkgs/pkgs/development/tools/parsing/sdf2/default.nix

14 lines
332 B
Nix
Raw Normal View History

{stdenv, fetchurl, aterm, getopt}:
derivation {
name = "sdf2-1.6";
system = stdenv.system;
builder = ./builder.sh;
src = fetchurl {
url = ftp://ftp.stratego-language.org/pub/stratego/sdf2/sdf2-bundle-1.6.tar.gz;
md5 = "283be0b4c7c9575c1b5cc735316e6192";
};
stdenv = stdenv;
aterm = aterm;
getopt = getopt;
}