about summary refs log tree commit diff
path: root/pkgs/development/compilers/strategoxt/trunk.nix
blob: 0e78d79f57df9aad58bb4a69bd1951a6b67866fa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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;
}