Upgrade of SDF2 Bundle to version 2.3

svn path=/nixpkgs/trunk/; revision=1937
This commit is contained in:
Martin Bravenboer
2004-12-23 21:18:00 +00:00
parent 8d8210959e
commit b672ffc5b7
2 changed files with 16 additions and 3 deletions

View File

@@ -1,12 +1,13 @@
{stdenv, fetchurl, aterm, getopt}:
stdenv.mkDerivation {
name = "sdf2-bundle-2.2";
name = "sdf2-bundle-2.3";
builder = ./builder.sh;
src = fetchurl {
url = ftp://ftp.stratego-language.org/pub/stratego/sdf2/sdf2-bundle-2.2.tar.gz;
md5 = "995a1739134615b60b1fe796d6c9d0e6";
url = ftp://ftp.stratego-language.org/pub/stratego/sdf2/sdf2-bundle-2.3/sdf2-bundle-2.3.tar.gz;
md5 = "523b9b9e4f73ef6abad65d61e9635389";
};
buildInputs = [aterm];
propagatedBuildInputs = [getopt];
inherit aterm;