diff --git a/pkgs/development/compilers/strategoxt/dist.nix b/pkgs/development/compilers/strategoxt/dist.nix new file mode 100644 index 00000000000..0e78d79f57d --- /dev/null +++ b/pkgs/development/compilers/strategoxt/dist.nix @@ -0,0 +1,19 @@ +{stdenv, fetchsvn, autotools, which, aterm, sdf}: derivation { + name = "strategoxt-0.9.4-4792"; + system = stdenv.system; + builder = ./svnbuilder.sh; + src = fetchsvn { + url = https://svn.cs.uu.nl:12443/repos/StrategoXT/trunk/StrategoXT; + rev = "4792"; + }; + stdenv = stdenv; + + make = autotools.make; + automake = autotools.automake; + autoconf = autotools.autoconf; + libtool = autotools.libtool; + which = which; + + aterm = aterm; + sdf = sdf; +}