Skip to content
This repository was archived by the owner on Apr 12, 2021. It is now read-only.
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs-channels
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: a37638d46706
Choose a base ref
...
head repository: NixOS/nixpkgs-channels
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 8252400a0da4
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Aug 31, 2018

  1. openjdk10: 10.0.1 -> 10.0.2 (#45882)

    this fixes a series of potential security issues:
    
    CVE-2018-2940, CVE-2018-2941, CVE-2018-2952, CVE-2018-2964,
    CVE-2018-2972 & CVE-2018-2973
    
    (cherry picked from commit f9788aa)
    andir authored and xeji committed Aug 31, 2018

    Verified

    This commit was signed with the committer’s verified signature.
    Copy the full SHA
    8252400 View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/development/compilers/openjdk/10.nix
6 changes: 3 additions & 3 deletions pkgs/development/compilers/openjdk/10.nix
Original file line number Diff line number Diff line change
@@ -17,8 +17,8 @@ let
"i386"
else "amd64";

update = "10.0.1";
build = "10";
update = "10.0.2";
build = "13";
repover = "jdk-${update}+${build}";
paxflags = if stdenv.isi686 then "msp" else "m";

@@ -27,7 +27,7 @@ let

src = fetchurl {
url = "http://hg.openjdk.java.net/jdk-updates/jdk10u/archive/${repover}.tar.gz";
sha256 = "1fg0rl5pd3f2y3v3bq8p3zdkrpa1pyslwdln4s64clyr7spvxkjw";
sha256 = "0y7hyzgvn6z8gyp3h9xvxwj6zda899y6i629jn6yxqzj96q56jpk";
};

outputs = [ "out" "jre" ];