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";
|
2022-01-02 22:43:06 +00:00
|
|
|
version = "1.9.7";
|
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";
|
2022-01-02 22:43:06 +00:00
|
|
|
sha256 = "sha256-xrg88nLOcagaAsFSnnYChhlv6EKhdBqkJJTDzhUBvTo=";
|
2006-03-26 03:52:55 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
inherit jre;
|
|
|
|
buildInputs = [jre];
|
2010-09-27 11:19:31 +00:00
|
|
|
|
|
|
|
meta = {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "http://www.eclipse.org/aspectj/";
|
2010-09-27 11:19:31 +00:00
|
|
|
description = "A seamless aspect-oriented extension to the Java programming language";
|
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
|
|
|
}
|