2006-03-26 05:52:55 +02:00
|
|
|
{stdenv, fetchurl, jre}:
|
|
|
|
|
2017-01-24 17:41:21 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2006-08-02 18:42:52 +02:00
|
|
|
name = "aspectj-1.5.2";
|
2006-03-26 05:52:55 +02:00
|
|
|
builder = ./builder.sh;
|
|
|
|
|
|
|
|
src = fetchurl {
|
2017-01-24 17:41:21 +01:00
|
|
|
url = "http://archive.eclipse.org/tools/aspectj/${name}.jar";
|
|
|
|
sha256 = "1b3mx248dc1xka1vgsl0jj4sm0nfjsqdcj9r9036mvixj1zj3nmh";
|
2006-03-26 05:52:55 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
inherit jre;
|
|
|
|
buildInputs = [jre];
|
2010-09-27 13:19:31 +02:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://www.eclipse.org/aspectj/;
|
|
|
|
description = "A seamless aspect-oriented extension to the Java programming language";
|
2016-08-02 19:50:55 +02:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2010-09-27 13:19:31 +02:00
|
|
|
};
|
2006-03-26 05:52:55 +02:00
|
|
|
}
|