Unverified Commit 1deab497 authored by Matthias Beyer's avatar Matthias Beyer Committed by GitHub
Browse files

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

aspectj: 1.9.19 -> 1.9.20
parents 1f4be903 ddd4ff16
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.19";
  version = "1.9.20";
  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-Oujyg05yvtcyfLmqonc++GX9AyFKwfIzITOHDz0px0M=";
    sha256 = "sha256-zrU7JlEyUwoYxQ+sTaJM4YGVW5NucDXDiEao4glJAk0=";
  };

  inherit jre;