Update of aspectj to 1.5.2

svn path=/nixpkgs/trunk/; revision=6019
This commit is contained in:
Martin Bravenboer 2006-08-02 16:42:52 +00:00
parent db8288bf5b
commit 6fa02079b8
2 changed files with 6 additions and 6 deletions

View file

@ -18,10 +18,10 @@ do
fi
done
cat >> $out/bin/ajc-env <<EOF
cat >> $out/bin/aj-runtime-env <<EOF
#! $SHELL
export CLASSPATH=$CLASSPATH:.:/pkg/aspectj/lib/aspectjrt.jar
export CLASSPATH=$CLASSPATH:.:$out/lib/aspectjrt.jar
EOF
chmod u+x $out/bin/ajc-env
chmod u+x $out/bin/aj-runtime-env

View file

@ -1,12 +1,12 @@
{stdenv, fetchurl, jre}:
stdenv.mkDerivation {
name = "aspectj-1.5.0";
name = "aspectj-1.5.2";
builder = ./builder.sh;
src = fetchurl {
url = http://www.mirrorservice.org/sites/download.eclipse.org/eclipseMirror/technology/aspectj/aspectj-1.5.0.jar;
md5 = "76d716f699cdd84049323992b21f02fb";
url = http://www.mirrorservice.org/sites/download.eclipse.org/eclipseMirror/technology/aspectj/aspectj-1.5.2.jar;
md5 = "64245d451549325147e3ca1ec4c9e57c";
};
inherit jre;