2021-01-22 11:25:31 +00:00
|
|
|
{lib, stdenv, fetchurl, jre}:
|
2006-03-26 03:52:55 +00:00
|
|
|
|
2017-01-24 16:41:21 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2020-08-24 21:00:00 +00:00
|
|
|
pname = "aspectj";
|
2023-02-04 02:30:58 +00:00
|
|
|
version = "1.9.19";
|
2006-03-26 03:52:55 +00:00
|
|
|
builder = ./builder.sh;
|
|
|
|
|
2020-08-24 21:00:00 +00:00
|
|
|
src = let
|
|
|
|
versionSnakeCase = builtins.replaceStrings ["."] ["_"] version;
|
|
|
|
in fetchurl {
|
|
|
|
url = "https://github.com/eclipse/org.aspectj/releases/download/V${versionSnakeCase}/aspectj-${version}.jar";
|
2023-02-04 02:30:58 +00:00
|
|
|
sha256 = "sha256-Oujyg05yvtcyfLmqonc++GX9AyFKwfIzITOHDz0px0M=";
|
2006-03-26 03:52:55 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
inherit jre;
|
|
|
|
buildInputs = [jre];
|
2010-09-27 11:19:31 +00:00
|
|
|
|
|
|
|
meta = {
|
2023-01-21 21:41:12 +00:00
|
|
|
homepage = "https://www.eclipse.org/aspectj/";
|
2010-09-27 11:19:31 +00:00
|
|
|
description = "A seamless aspect-oriented extension to the Java programming language";
|
2022-06-02 13:38:41 +00:00
|
|
|
sourceProvenance = with lib.sourceTypes; [ binaryBytecode ];
|
2021-01-22 11:25:31 +00:00
|
|
|
platforms = lib.platforms.unix;
|
|
|
|
license = lib.licenses.epl10;
|
2010-09-27 11:19:31 +00:00
|
|
|
};
|
2006-03-26 03:52:55 +00:00
|
|
|
}
|