* Fixed Stratego.

* Added Zoom, an interpreter for Z-Code.

svn path=/nixpkgs/trunk/; revision=894
This commit is contained in:
Eelco Dolstra
2004-04-01 16:02:53 +00:00
parent 8e4d58631e
commit e50417845d
9 changed files with 27 additions and 59 deletions

View File

@@ -1,10 +1,5 @@
buildinputs="$aterm $getopt"
. $stdenv/setup
tar zxf $src
cd sdf2-bundle-*
./configure --prefix=$out --with-aterm=$aterm
make install
configureFlags="--with-aterm=$aterm"
mkdir $out/nix-support
echo "$getopt" > $out/nix-support/propagated-build-inputs
genericBuild

View File

@@ -1,11 +1,13 @@
{stdenv, fetchurl, aterm, getopt}:
stdenv.mkDerivation {
name = "sdf2-1.6";
name = "sdf2-2.0.1";
builder = ./builder.sh;
src = fetchurl {
url = ftp://ftp.stratego-language.org/pub/stratego/sdf2/sdf2-bundle-1.6.tar.gz;
md5 = "283be0b4c7c9575c1b5cc735316e6192";
url = ftp://ftp.stratego-language.org/pub/stratego/sdf2/sdf2-bundle-2.0.1.tar.gz;
md5 = "ceba34dc8e53fba04ad3be73627f0a20";
};
aterm = aterm;
getopt = getopt;
buildInputs = [aterm];
propagatedBuildInputs = [getopt];
inherit aterm;
}