upgrade to strategoxt 0.15

svn path=/nixpkgs/trunk/; revision=3305
This commit is contained in:
Eelco Visser 2005-07-09 12:53:02 +00:00
parent af854693eb
commit ed4b36e5ee
2 changed files with 16 additions and 1 deletions

View File

@ -1,2 +1,2 @@
import ./strategoxt-0.14.nix
import ./strategoxt-0.15.nix

View File

@ -0,0 +1,15 @@
{stdenv, fetchurl, aterm, sdf, pkgconfig}:
stdenv.mkDerivation {
name = "strategoxt-0.15";
builder = ./builder.sh;
src = fetchurl {
url = ftp://ftp.stratego-language.org/pub/stratego/StrategoXT/strategoxt-0.15/strategoxt-0.15.tar.gz;
md5 = "143f01cc27231ccd5eddb695a7b79c69";
};
inherit aterm sdf;
buildInputs = [pkgconfig aterm sdf];
}