bcb2f287e1
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
69 lines
2 KiB
Nix
69 lines
2 KiB
Nix
{ stdenv
|
|
, lib
|
|
, fetchzip
|
|
, copyDesktopItems
|
|
, makeWrapper
|
|
, runCommand
|
|
, appimageTools
|
|
, icu
|
|
}:
|
|
let
|
|
pname = "jetbrains-toolbox";
|
|
version = "2.3.2.31487";
|
|
|
|
src = fetchzip {
|
|
url = "https://download.jetbrains.com/toolbox/jetbrains-toolbox-${version}.tar.gz";
|
|
sha256 = "sha256-5dgtaqi9cMpEoSl3MRaHWzCA8ktU5Mgjvt9CnBzr1ME=";
|
|
stripRoot = false;
|
|
};
|
|
|
|
appimageContents = runCommand "${pname}-extracted"
|
|
{
|
|
nativeBuildInputs = [ appimageTools.appimage-exec ];
|
|
}
|
|
''
|
|
appimage-exec.sh -x $out ${src}/${pname}-${version}/${pname}
|
|
|
|
# JetBrains ship a broken desktop file. Despite registering a custom
|
|
# scheme handler for jetbrains:// URLs, they never mark the command as
|
|
# being suitable for passing URLs to. Ergo, the handler never receives
|
|
# its payload. This causes various things to break, including login.
|
|
# Reported upstream at: https://youtrack.jetbrains.com/issue/TBX-11478/
|
|
sed -Ei '/^Exec=/s/( %U)?$/ %U/' $out/jetbrains-toolbox.desktop
|
|
'';
|
|
|
|
appimage = appimageTools.wrapAppImage {
|
|
inherit pname version;
|
|
src = appimageContents;
|
|
};
|
|
in
|
|
stdenv.mkDerivation {
|
|
inherit pname version src appimage;
|
|
|
|
nativeBuildInputs = [ makeWrapper copyDesktopItems ];
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
install -Dm644 ${appimageContents}/.DirIcon $out/share/icons/hicolor/scalable/apps/jetbrains-toolbox.svg
|
|
makeWrapper ${appimage}/bin/${pname} $out/bin/${pname} \
|
|
--append-flags "--update-failed" \
|
|
--prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath [icu]}
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
desktopItems = [ "${appimageContents}/jetbrains-toolbox.desktop" ];
|
|
|
|
# Disabling the tests, this seems to be very difficult to test this app.
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Jetbrains Toolbox";
|
|
homepage = "https://jetbrains.com/";
|
|
license = licenses.unfree;
|
|
maintainers = with maintainers; [ AnatolyPopov ];
|
|
platforms = [ "x86_64-linux" ];
|
|
mainProgram = "jetbrains-toolbox";
|
|
};
|
|
}
|