Skip to content
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
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 42dfa16df49a
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 0c2a0edf9e21
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Nov 1, 2020

  1. openjdk: 11.0.8 -> 11.0.9

    asbachb committed Nov 1, 2020
    Copy the full SHA
    e659537 View commit details

Commits on Nov 4, 2020

  1. Merge pull request #102293 from asbachb/update/openjdk

    openjdk: 11.0.8 -> 11.0.9
    NeQuissimus authored Nov 4, 2020
    Copy the full SHA
    0c2a0ed View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/development/compilers/openjdk/11.nix
6 changes: 3 additions & 3 deletions pkgs/development/compilers/openjdk/11.nix
Original file line number Diff line number Diff line change
@@ -11,16 +11,16 @@
let
major = "11";
minor = "0";
update = "8";
build = "10";
update = "9";
build = "11";

openjdk = stdenv.mkDerivation rec {
pname = "openjdk" + lib.optionalString headless "-headless";
version = "${major}.${minor}.${update}+${build}";

src = fetchurl {
url = "http://hg.openjdk.java.net/jdk-updates/jdk${major}u/archive/jdk-${version}.tar.gz";
sha256 = "1sdncn1bk4h8xxfnmrl1125maqy6mc0v0y1dyifwsa04wasj9hbz";
sha256 = "fc2ee2ee5822f2440e66114c8fa76888fea7ddd351282940c222d34b5f871858";
};

nativeBuildInputs = [ pkgconfig autoconf ];