492be34fc9
jetbrains/update-2
71 lines
2.7 KiB
Nix
71 lines
2.7 KiB
Nix
{ stdenv, lib, fetchurl, file, glib, libxml2, libav_0_8, ffmpeg, libxslt
|
|
, libGL , xorg, alsaLib, fontconfig, freetype, pango, gtk2, cairo
|
|
, gdk-pixbuf, atk, zlib }:
|
|
|
|
# TODO: Investigate building from source instead of patching binaries.
|
|
# TODO: Binary patching for not just x86_64-linux but also x86_64-darwin i686-linux
|
|
|
|
let drv = stdenv.mkDerivation rec {
|
|
pname = "jetbrainsjdk";
|
|
version = "485.1";
|
|
|
|
src = if stdenv.hostPlatform.system == "x86_64-linux" then
|
|
fetchurl {
|
|
url = "https://bintray.com/jetbrains/intellij-jbr/download_file?file_path=jbrsdk-11_0_4-linux-x64-b${version}.tar.gz";
|
|
sha256 = "18jnn0dra9nsnyllwq0ljxzr58k2pg8d0kg10y39vnxwccic4f76";
|
|
}
|
|
else if stdenv.hostPlatform.system == "x86_64-darwin" then
|
|
fetchurl {
|
|
url = "https://bintray.com/jetbrains/intellij-jdk/download_file?file_path=jbrsdk-11_0_2-osx-x64-b${version}.tar.gz";
|
|
sha256 = "1ly6kf59knvzbr2pjkc9fqyzfs28pdvnqg5pfffr8zp14xm44zmd";
|
|
}
|
|
else
|
|
throw "unsupported system: ${stdenv.hostPlatform.system}";
|
|
|
|
nativeBuildInputs = [ file ];
|
|
|
|
unpackCmd = "mkdir jdk; pushd jdk; tar -xzf $src; popd";
|
|
|
|
installPhase = ''
|
|
cd ..
|
|
|
|
mv $sourceRoot/jbrsdk $out
|
|
'';
|
|
|
|
postFixup = lib.optionalString (!stdenv.isDarwin) ''
|
|
find $out -type f -perm -0100 \
|
|
-exec patchelf --interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \
|
|
--set-rpath "$rpath" {} \;
|
|
find $out -name "*.so" -exec patchelf --set-rpath "$rpath" {} \;
|
|
'';
|
|
|
|
rpath = lib.optionalString (!stdenv.isDarwin) (lib.makeLibraryPath ([
|
|
stdenv.cc.cc stdenv.cc.libc glib libxml2 libav_0_8 ffmpeg libxslt libGL
|
|
alsaLib fontconfig freetype pango gtk2 cairo gdk-pixbuf atk zlib
|
|
(placeholder "out")
|
|
] ++ (with xorg; [
|
|
libX11 libXext libXtst libXi libXp libXt libXrender libXxf86vm
|
|
])) + ":${placeholder "out"}/lib/jli");
|
|
|
|
passthru.home = drv;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "An OpenJDK fork to better support Jetbrains's products.";
|
|
longDescription = ''
|
|
JetBrains Runtime is a runtime environment for running IntelliJ Platform
|
|
based products on Windows, Mac OS X, and Linux. JetBrains Runtime is
|
|
based on OpenJDK project with some modifications. These modifications
|
|
include: Subpixel Anti-Aliasing, enhanced font rendering on Linux, HiDPI
|
|
support, ligatures, some fixes for native crashes not presented in
|
|
official build, and other small enhancements.
|
|
|
|
JetBrains Runtime is not a certified build of OpenJDK. Please, use at
|
|
your own risk.
|
|
'';
|
|
homepage = "https://bintray.com/jetbrains/intellij-jdk/";
|
|
license = licenses.gpl2;
|
|
maintainers = with maintainers; [ edwtjo ];
|
|
platforms = with platforms; [ "x86_64-linux" "x86_64-darwin" ];
|
|
};
|
|
}; in drv
|