e13831335f
* treewide: stdenv.is -> stdenv.hostPlatform.is * treewide: nixfmt due to ci error
134 lines
3.7 KiB
Nix
134 lines
3.7 KiB
Nix
{
|
|
lib,
|
|
_7zz,
|
|
alsa-lib,
|
|
systemd,
|
|
autoPatchelfHook,
|
|
blas,
|
|
dpkg,
|
|
fetchurl,
|
|
gtk3,
|
|
libglvnd,
|
|
libxkbcommon,
|
|
makeShellWrapper,
|
|
mesa,
|
|
musl,
|
|
nss,
|
|
patchelf,
|
|
stdenv,
|
|
xorg,
|
|
}:
|
|
let
|
|
pname = "positron-bin";
|
|
version = "2024.11.0-116";
|
|
in
|
|
stdenv.mkDerivation {
|
|
inherit version pname;
|
|
|
|
src =
|
|
if stdenv.hostPlatform.isDarwin then
|
|
fetchurl {
|
|
url = "https://github.com/posit-dev/positron/releases/download/${version}/Positron-${version}.dmg";
|
|
hash = "sha256-5Ym42InDgFLGdZk0LYV1H0eC5WzmsYToG1KLdiGgTto=";
|
|
}
|
|
else
|
|
fetchurl {
|
|
url = "https://github.com/posit-dev/positron/releases/download/${version}/Positron-${version}.deb";
|
|
hash = "sha256-pE25XVYFW8WwyQ7zmox2mmXy6ZCSaXk2gSnPimg7xtU=";
|
|
};
|
|
|
|
buildInputs =
|
|
[ makeShellWrapper ]
|
|
++ lib.optionals stdenv.hostPlatform.isLinux [
|
|
alsa-lib
|
|
dpkg
|
|
gtk3
|
|
libglvnd
|
|
libxkbcommon
|
|
mesa
|
|
musl
|
|
nss
|
|
stdenv.cc.cc
|
|
xorg.libX11
|
|
xorg.libXcomposite
|
|
xorg.libXdamage
|
|
xorg.libxkbfile
|
|
]
|
|
++ lib.optionals stdenv.hostPlatform.isDarwin [
|
|
blas
|
|
patchelf
|
|
];
|
|
|
|
nativeBuildInputs =
|
|
lib.optionals stdenv.hostPlatform.isLinux [
|
|
autoPatchelfHook
|
|
]
|
|
++ lib.optionals stdenv.hostPlatform.isDarwin [
|
|
_7zz
|
|
];
|
|
|
|
runtimeDependencies = lib.optionals stdenv.hostPlatform.isLinux [
|
|
# Needed to fix the "Zygote could not fork" error.
|
|
(lib.getLib systemd)
|
|
];
|
|
|
|
postUnpack = lib.optionalString stdenv.hostPlatform.isLinux ''dpkg-deb --fsys-tarfile "$src" | tar -x --no-same-owner'';
|
|
|
|
installPhase =
|
|
if stdenv.hostPlatform.isDarwin then
|
|
''
|
|
runHook preInstall
|
|
mkdir -p "$out/Applications" "$out/bin"
|
|
cp -r . "$out/Applications/Positron.app"
|
|
|
|
# Positron will use the system version of BLAS if we don't provide the nix version.
|
|
wrapProgram "$out/Applications/Positron.app/Contents/Resources/app/bin/code" \
|
|
--prefix DYLD_INSERT_LIBRARIES : "${lib.makeLibraryPath [ blas ]}/libblas.dylib"
|
|
|
|
ln -s "$out/Applications/Positron.app/Contents/Resources/app/bin/code" "$out/bin/positron"
|
|
runHook postInstall
|
|
''
|
|
else
|
|
''
|
|
runHook preInstall
|
|
mkdir -p "$out/share"
|
|
cp -r usr/share/pixmaps "$out/share/pixmaps"
|
|
cp -r usr/share/positron "$out/share/positron"
|
|
|
|
mkdir -p "$out/share/applications"
|
|
install -m 444 -D usr/share/applications/positron.desktop "$out/share/applications/positron.desktop"
|
|
substituteInPlace "$out/share/applications/positron.desktop" \
|
|
--replace-fail \
|
|
"Icon=com.visualstudio.code.oss" \
|
|
"Icon=$out/share/pixmaps/com.visualstudio.code.oss.png" \
|
|
--replace-fail \
|
|
"Exec=/usr/share/positron/positron %F" \
|
|
"Exec=$out/share/positron/.positron-wrapped %F" \
|
|
--replace-fail \
|
|
"/usr/share/positron/positron --new-window %F" \
|
|
"$out/share/positron/.positron-wrapped --new-window %F"
|
|
|
|
# Fix libGL.so not found errors.
|
|
wrapProgram "$out/share/positron/positron" \
|
|
--prefix LD_LIBRARY_PATH : "${lib.makeLibraryPath [ libglvnd ]}"
|
|
|
|
mkdir -p "$out/bin"
|
|
ln -s "$out/share/positron/positron" "$out/bin/positron"
|
|
runHook postInstall
|
|
'';
|
|
|
|
passthru.updateScript = ./update.sh;
|
|
|
|
meta = with lib; {
|
|
description = "Positron, a next-generation data science IDE";
|
|
homepage = "https://github.com/posit-dev/positron";
|
|
license = licenses.elastic20;
|
|
maintainers = with maintainers; [
|
|
b-rodrigues
|
|
detroyejr
|
|
];
|
|
mainProgram = "positron";
|
|
platforms = [ "x86_64-linux" ] ++ platforms.darwin;
|
|
};
|
|
}
|