Unverified Commit 5a211d5e authored by Mario Rodas's avatar Mario Rodas Committed by GitHub
Browse files

Merge pull request #214463 from r-ryantm/auto-update/aspectj

aspectj: 1.9.9.1 -> 1.9.19
parents 392d0403 959609d9
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -2,14 +2,14 @@

stdenv.mkDerivation rec {
  pname = "aspectj";
  version = "1.9.9.1";
  version = "1.9.19";
  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=";
    sha256 = "sha256-Oujyg05yvtcyfLmqonc++GX9AyFKwfIzITOHDz0px0M=";
  };

  inherit jre;