nixpkgs/pkgs/development/compilers/strategoxt/trunk.nix

15 lines
362 B
Nix
Raw Normal View History

{stdenv, fetchsvn, autoconf, automake, libtool, which, aterm, sdf}:
stdenv.mkDerivation {
name = "strategoxt-0.9.4-4792";
builder = ./svnbuilder.sh;
src = fetchsvn {
url = https://svn.cs.uu.nl:12443/repos/StrategoXT/trunk/StrategoXT;
rev = "4792";
};
buildInputs = [autoconf automake libtool which aterm sdf];
inherit aterm sdf libtool;
}