summary refs log tree commit diff
path: root/pkgs/development/compilers/openjdk/darwin/10.nix
diff options
context:
space:
mode:
authorUri Baghin <uri@canva.com>2018-08-24 16:35:59 +1000
committerUri Baghin <uri@canva.com>2018-08-24 16:35:59 +1000
commit410a51747c541287102d1ae73d96c7f828d170f1 (patch)
tree80db2396e7247000222e4e074bb322cd75c537fd /pkgs/development/compilers/openjdk/darwin/10.nix
parent1bc48e63fd5bbf15aaef1813f31c1d237ae200f3 (diff)
downloadnixpkgs-410a51747c541287102d1ae73d96c7f828d170f1.tar
nixpkgs-410a51747c541287102d1ae73d96c7f828d170f1.tar.gz
nixpkgs-410a51747c541287102d1ae73d96c7f828d170f1.tar.bz2
nixpkgs-410a51747c541287102d1ae73d96c7f828d170f1.tar.lz
nixpkgs-410a51747c541287102d1ae73d96c7f828d170f1.tar.xz
nixpkgs-410a51747c541287102d1ae73d96c7f828d170f1.tar.zst
nixpkgs-410a51747c541287102d1ae73d96c7f828d170f1.zip
openjdk10: add darwin support
Diffstat (limited to 'pkgs/development/compilers/openjdk/darwin/10.nix')
-rw-r--r--pkgs/development/compilers/openjdk/darwin/10.nix59
1 files changed, 59 insertions, 0 deletions
diff --git a/pkgs/development/compilers/openjdk/darwin/10.nix b/pkgs/development/compilers/openjdk/darwin/10.nix
new file mode 100644
index 00000000000..95c96c345c2
--- /dev/null
+++ b/pkgs/development/compilers/openjdk/darwin/10.nix
@@ -0,0 +1,59 @@
+{ stdenv, fetchurl, unzip, setJavaClassPath, freetype }:
+let
+  jce-policies = fetchurl {
+    # Ugh, unversioned URLs... I hope this doesn't change often enough to cause pain before we move to a Darwin source build of OpenJDK!
+    url    = "http://cdn.azul.com/zcek/bin/ZuluJCEPolicies.zip";
+    sha256 = "0nk7m0lgcbsvldq2wbfni2pzq8h818523z912i7v8hdcij5s48c0";
+  };
+
+  jdk = stdenv.mkDerivation {
+    name = "zulu10.1+11-jdk10";
+
+    src = fetchurl {
+      url = "https://cdn.azul.com/zulu/bin/zulu10.1+11-jdk10-macosx_x64.zip";
+      sha256 = "1c5ib136nv6gz7ij31mg15nhzrl6zr7kp8spm17zwm1ib82bc73y";
+      curlOpts = "-H Referer:https://www.azul.com/downloads/zulu/zulu-linux/";
+    };
+
+    buildInputs = [ unzip freetype ];
+
+    installPhase = ''
+      mkdir -p $out
+      mv * $out
+
+      unzip ${jce-policies}
+      mv -f ZuluJCEPolicies/*.jar $out/lib/security/
+
+      # jni.h expects jni_md.h to be in the header search path.
+      ln -s $out/include/darwin/*_md.h $out/include/
+
+      if [ -f $out/LICENSE ]; then
+        install -D $out/LICENSE $out/share/zulu/LICENSE
+        rm $out/LICENSE
+      fi
+    '';
+
+    preFixup = ''
+      # Propagate the setJavaClassPath setup hook from the JRE so that
+      # any package that depends on the JRE has $CLASSPATH set up
+      # properly.
+      mkdir -p $out/nix-support
+      printWords ${setJavaClassPath} > $out/nix-support/propagated-build-inputs
+
+      install_name_tool -change /usr/X11/lib/libfreetype.6.dylib ${freetype}/lib/libfreetype.6.dylib $out/lib/libfontmanager.dylib
+
+      # Set JAVA_HOME automatically.
+      cat <<EOF >> $out/nix-support/setup-hook
+      if [ -z "\$JAVA_HOME" ]; then export JAVA_HOME=$out; fi
+      EOF
+    '';
+
+    passthru = {
+      jre = jdk;
+      home = jdk;
+    };
+
+    meta.platforms = stdenv.lib.platforms.darwin;
+
+  };
+in jdk