summary refs log tree commit diff
path: root/pkgs/development/compilers/adoptopenjdk-bin/jdk16-linux.nix
diff options
context:
space:
mode:
authorSerg Nesterov <i.am.cust0dian@gmail.com>2021-03-20 03:11:52 +0300
committerSerg Nesterov <i.am.cust0dian@gmail.com>2021-03-22 01:18:50 +0300
commit05a48020fd7b486d1333fc616f6788b36c116740 (patch)
treebdd8e56d0c19a99063fbd547c4cd0b00294cea4f /pkgs/development/compilers/adoptopenjdk-bin/jdk16-linux.nix
parentdec0d32d7c1634f0c5fe6e24b0725cf630f07d3b (diff)
downloadnixpkgs-05a48020fd7b486d1333fc616f6788b36c116740.tar
nixpkgs-05a48020fd7b486d1333fc616f6788b36c116740.tar.gz
nixpkgs-05a48020fd7b486d1333fc616f6788b36c116740.tar.bz2
nixpkgs-05a48020fd7b486d1333fc616f6788b36c116740.tar.lz
nixpkgs-05a48020fd7b486d1333fc616f6788b36c116740.tar.xz
nixpkgs-05a48020fd7b486d1333fc616f6788b36c116740.tar.zst
nixpkgs-05a48020fd7b486d1333fc616f6788b36c116740.zip
adoptopenjdk: add 16.0.0
Diffstat (limited to 'pkgs/development/compilers/adoptopenjdk-bin/jdk16-linux.nix')
-rw-r--r--pkgs/development/compilers/adoptopenjdk-bin/jdk16-linux.nix9
1 files changed, 9 insertions, 0 deletions
diff --git a/pkgs/development/compilers/adoptopenjdk-bin/jdk16-linux.nix b/pkgs/development/compilers/adoptopenjdk-bin/jdk16-linux.nix
new file mode 100644
index 00000000000..738b31fe1d1
--- /dev/null
+++ b/pkgs/development/compilers/adoptopenjdk-bin/jdk16-linux.nix
@@ -0,0 +1,9 @@
+let
+  sources = builtins.fromJSON (builtins.readFile ./sources.json);
+in
+{
+  jdk-hotspot = import ./jdk-linux-base.nix { sourcePerArch = sources.openjdk16.linux.jdk.hotspot; };
+  jre-hotspot = import ./jdk-linux-base.nix { sourcePerArch = sources.openjdk16.linux.jre.hotspot; };
+  jdk-openj9 = import ./jdk-linux-base.nix { sourcePerArch = sources.openjdk16.linux.jdk.openj9; };
+  jre-openj9 = import ./jdk-linux-base.nix { sourcePerArch = sources.openjdk16.linux.jre.openj9; };
+}