mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-16 18:53:17 +00:00
43 lines
1.3 KiB
Nix
43 lines
1.3 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, jetbrains
|
|
, openjdk17
|
|
}:
|
|
|
|
openjdk17.overrideAttrs (oldAttrs: rec {
|
|
pname = "jetbrains-jdk";
|
|
version = "17.0.5-b653.14";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "JetBrains";
|
|
repo = "JetBrainsRuntime";
|
|
rev = "jb${version}";
|
|
hash = "sha256-7Nx7Y12oMfs4zeQMSfnUaDCW1xJYMEkcoTapSpmVCfU=";
|
|
};
|
|
|
|
meta = with 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://confluence.jetbrains.com/display/JBR/JetBrains+Runtime";
|
|
inherit (openjdk17.meta) license platforms mainProgram;
|
|
maintainers = with maintainers; [ edwtjo ];
|
|
|
|
broken = stdenv.isDarwin;
|
|
};
|
|
|
|
passthru = oldAttrs.passthru // {
|
|
home = "${jetbrains.jdk}/lib/openjdk";
|
|
};
|
|
})
|