2006-03-25 19:52:55 -08:00
|
|
|
{stdenv, fetchurl, jre}:
|
|
|
|
|
2017-01-24 08:41:21 -08:00
|
|
|
stdenv.mkDerivation rec {
|
2020-08-24 14:00:00 -07:00
|
|
|
pname = "aspectj";
|
|
|
|
version = "1.9.6";
|
2006-03-25 19:52:55 -08:00
|
|
|
builder = ./builder.sh;
|
|
|
|
|
2020-08-24 14:00:00 -07:00
|
|
|
src = let
|
|
|
|
versionSnakeCase = builtins.replaceStrings ["."] ["_"] version;
|
|
|
|
in fetchurl {
|
|
|
|
url = "https://github.com/eclipse/org.aspectj/releases/download/V${versionSnakeCase}/aspectj-${version}.jar";
|
|
|
|
sha256 = "02jh66l3vw57k9a4dxlga3qh3487r36gyi6k2z2mmqxbpqajslja";
|
2006-03-25 19:52:55 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
inherit jre;
|
|
|
|
buildInputs = [jre];
|
2010-09-27 04:19:31 -07:00
|
|
|
|
|
|
|
meta = {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "http://www.eclipse.org/aspectj/";
|
2010-09-27 04:19:31 -07:00
|
|
|
description = "A seamless aspect-oriented extension to the Java programming language";
|
2016-08-02 10:50:55 -07:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2019-03-27 04:00:00 -07:00
|
|
|
license = stdenv.lib.licenses.epl10;
|
2010-09-27 04:19:31 -07:00
|
|
|
};
|
2006-03-25 19:52:55 -08:00
|
|
|
}
|