* Update of jre

* Added aspectj-1.5.0


svn path=/nixpkgs/trunk/; revision=5110
This commit is contained in:
Martin Bravenboer
2006-03-26 03:52:55 +00:00
parent d88e2ea70f
commit 8dbf2c38fb
5 changed files with 51 additions and 5 deletions
@@ -0,0 +1,14 @@
{stdenv, fetchurl, jre}:
stdenv.mkDerivation {
name = "aspectj-1.5.0";
builder = ./builder.sh;
src = fetchurl {
url = http://www.mirrorservice.org/sites/download.eclipse.org/eclipseMirror/technology/aspectj/aspectj-1.5.0.jar;
md5 = "76d716f699cdd84049323992b21f02fb";
};
inherit jre;
buildInputs = [jre];
}