25 lines
747 B
Nix
25 lines
747 B
Nix
{lib, stdenv, fetchurl, jre}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "aspectj";
|
|
version = "1.9.20.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-nzeDi1WdnIZ5DFxpZFSB/4c6FgV7wRQyO1uxRlaTZBY=";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|