a0cb138ada
GitOrigin-RevId: a100acd7bbf105915b0004427802286c37738fef
25 lines
746 B
Nix
25 lines
746 B
Nix
{lib, stdenv, fetchurl, jre}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "aspectj";
|
|
version = "1.9.9.1";
|
|
builder = ./builder.sh;
|
|
|
|
src = let
|
|
versionSnakeCase = builtins.replaceStrings ["."] ["_"] version;
|
|
in fetchurl {
|
|
url = "https://github.com/eclipse/org.aspectj/releases/download/V${versionSnakeCase}/aspectj-${version}.jar";
|
|
sha256 = "sha256-kiMQuEPXoSpHUiInkfYsrfCAcSc6mX42TRIBbeIQhWs=";
|
|
};
|
|
|
|
inherit jre;
|
|
buildInputs = [jre];
|
|
|
|
meta = {
|
|
homepage = "https://www.eclipse.org/aspectj/";
|
|
description = "A seamless aspect-oriented extension to the Java programming language";
|
|
sourceProvenance = with lib.sourceTypes; [ binaryBytecode ];
|
|
platforms = lib.platforms.unix;
|
|
license = lib.licenses.epl10;
|
|
};
|
|
}
|