mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
240 lines
6.4 KiB
Nix
240 lines
6.4 KiB
Nix
{
|
|
buildVersion,
|
|
dev ? false,
|
|
aarch64sha256,
|
|
x64sha256,
|
|
}:
|
|
|
|
{
|
|
config,
|
|
fetchurl,
|
|
stdenv,
|
|
lib,
|
|
libxtst,
|
|
libx11,
|
|
glib,
|
|
libglvnd,
|
|
glibcLocales,
|
|
gtk3,
|
|
cairo,
|
|
pango,
|
|
makeWrapper,
|
|
wrapGAppsHook3,
|
|
writeShellScript,
|
|
common-updater-scripts,
|
|
curl,
|
|
openssl_3_5,
|
|
bzip2,
|
|
sqlite,
|
|
}:
|
|
|
|
let
|
|
pnameBase = "sublimetext4";
|
|
packageAttribute = "sublime4${lib.optionalString dev "-dev"}";
|
|
binaries = [
|
|
"sublime_text"
|
|
"plugin_host-3.${if lib.versionAtLeast buildVersion "4205" then "14" else "8"}"
|
|
crashHandlerBinary
|
|
];
|
|
primaryBinary = "sublime_text";
|
|
primaryBinaryAliases = [
|
|
"subl"
|
|
"sublime"
|
|
"sublime4"
|
|
];
|
|
crashHandlerBinary =
|
|
if lib.versionAtLeast buildVersion "4153" then "crash_handler" else "crash_reporter";
|
|
downloadUrl =
|
|
arch: "https://download.sublimetext.com/sublime_text_build_${buildVersion}_${arch}.tar.xz";
|
|
versionUrl = "https://download.sublimetext.com/latest/${if dev then "dev" else "stable"}";
|
|
versionFile = toString ./packages.nix;
|
|
|
|
neededLibraries = [
|
|
libx11
|
|
libxtst
|
|
glib
|
|
libglvnd
|
|
gtk3
|
|
cairo
|
|
pango
|
|
curl
|
|
]
|
|
++ lib.optionals (lib.versionAtLeast buildVersion "4145") [
|
|
sqlite
|
|
];
|
|
|
|
binaryPackage = stdenv.mkDerivation (finalAttrs: {
|
|
pname = "${pnameBase}-bin";
|
|
version = buildVersion;
|
|
|
|
src = finalAttrs.passthru.sources.${stdenv.hostPlatform.system};
|
|
|
|
dontStrip = true;
|
|
dontPatchELF = true;
|
|
|
|
buildInputs = [
|
|
glib
|
|
# for GSETTINGS_SCHEMAS_PATH
|
|
gtk3
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
makeWrapper
|
|
wrapGAppsHook3
|
|
];
|
|
|
|
buildPhase = ''
|
|
runHook preBuild
|
|
|
|
# Remove old plugin host because it depends on EOL openssl 1.1
|
|
rm plugin_host-3.3
|
|
echo '{"disable_plugin_host_3.3": true}' > Packages/Preferences.sublime-settings
|
|
|
|
for binary in ${builtins.concatStringsSep " " binaries}; do
|
|
patchelf \
|
|
--interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \
|
|
--set-rpath ${lib.makeLibraryPath neededLibraries}:${lib.getLib stdenv.cc.cc}/lib${lib.optionalString stdenv.hostPlatform.is64bit "64"}:$out \
|
|
$binary
|
|
done
|
|
|
|
# Unable to get plugin_host-3.14 not crash with Python from Nixpkgs
|
|
${lib.optionalString (lib.versionAtLeast buildVersion "4205") "patchelf --set-rpath ${
|
|
lib.makeLibraryPath [
|
|
sqlite
|
|
openssl_3_5
|
|
]
|
|
} libpython3.14.so.1.0"}
|
|
|
|
# Rewrite pkexec argument. Note that we cannot delete bytes in binary.
|
|
${lib.optionalString (lib.versionOlder buildVersion "4205") "sed -i -e 's,/bin/cp\\x00,cp\\x00\\x00\\x00\\x00\\x00\\x00,g' ${primaryBinary}"}
|
|
|
|
runHook postBuild
|
|
'';
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
# No need to patch these libraries, it works well with our own
|
|
rm libcrypto.so.1.1 libssl.so.1.1
|
|
${lib.optionalString (lib.versionAtLeast buildVersion "4145") "rm libsqlite3.so"}
|
|
${lib.optionalString (lib.versionAtLeast buildVersion "4205") "rm libcrypto.so.3 libssl.so.3"}
|
|
|
|
mkdir -p $out
|
|
cp -r * $out/
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
dontWrapGApps = true; # non-standard location, need to wrap the executables manually
|
|
|
|
postFixup = ''
|
|
${lib.optionalString (lib.versionOlder buildVersion "4205") "sed -i 's#/usr/bin/pkexec#pkexec\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00#g' \"$out/${primaryBinary}\""}
|
|
|
|
wrapProgram $out/${primaryBinary} \
|
|
--set LOCALE_ARCHIVE "${glibcLocales.out}/lib/locale/locale-archive" \
|
|
"''${gappsWrapperArgs[@]}"
|
|
'';
|
|
|
|
passthru = {
|
|
sources = {
|
|
"aarch64-linux" = fetchurl {
|
|
url = downloadUrl "arm64";
|
|
sha256 = aarch64sha256;
|
|
};
|
|
"x86_64-linux" = fetchurl {
|
|
url = downloadUrl "x64";
|
|
sha256 = x64sha256;
|
|
};
|
|
};
|
|
};
|
|
});
|
|
in
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = pnameBase;
|
|
version = buildVersion;
|
|
|
|
dontUnpack = true;
|
|
|
|
nativeBuildInputs = [
|
|
makeWrapper
|
|
];
|
|
|
|
installPhase = ''
|
|
mkdir -p "$out/bin"
|
|
makeWrapper "${binaryPackage}/${primaryBinary}" "$out/bin/${primaryBinary}"
|
|
''
|
|
+ builtins.concatStringsSep "" (
|
|
map (binaryAlias: "ln -s $out/bin/${primaryBinary} $out/bin/${binaryAlias}\n") primaryBinaryAliases
|
|
)
|
|
+ ''
|
|
mkdir -p "$out/share/applications"
|
|
|
|
substitute \
|
|
"${binaryPackage}/${primaryBinary}.desktop" \
|
|
"$out/share/applications/${primaryBinary}.desktop" \
|
|
--replace-fail "/opt/${primaryBinary}/${primaryBinary}" "${primaryBinary}"
|
|
|
|
for directory in ${binaryPackage}/Icon/*; do
|
|
size=$(basename $directory)
|
|
mkdir -p "$out/share/icons/hicolor/$size/apps"
|
|
ln -s ${binaryPackage}/Icon/$size/* $out/share/icons/hicolor/$size/apps
|
|
done
|
|
'';
|
|
|
|
passthru = {
|
|
unwrapped = binaryPackage;
|
|
|
|
updateScript =
|
|
let
|
|
script = writeShellScript "${packageAttribute}-update-script" ''
|
|
set -o errexit
|
|
PATH=${
|
|
lib.makeBinPath [
|
|
common-updater-scripts
|
|
curl
|
|
]
|
|
}
|
|
|
|
versionFile=$1
|
|
latestVersion=$(curl -s "${versionUrl}")
|
|
|
|
if [[ "${buildVersion}" = "$latestVersion" ]]; then
|
|
echo "The new version same as the old version."
|
|
exit 0
|
|
fi
|
|
|
|
for platform in ${lib.escapeShellArgs finalAttrs.meta.platforms}; do
|
|
update-source-version "${packageAttribute}".unwrapped "$latestVersion" --ignore-same-version --file="$versionFile" --version-key=buildVersion --source-key="sources.$platform"
|
|
done
|
|
'';
|
|
in
|
|
[
|
|
script
|
|
versionFile
|
|
];
|
|
};
|
|
|
|
meta = {
|
|
description = "Sophisticated text editor for code, markup and prose";
|
|
homepage = "https://www.sublimetext.com/";
|
|
maintainers = with lib.maintainers; [
|
|
jtojnar
|
|
wmertens
|
|
demin-dmitriy
|
|
zimbatm
|
|
];
|
|
mainProgram = "subl";
|
|
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
|
|
license = lib.licenses.unfree;
|
|
platforms = [
|
|
"aarch64-linux"
|
|
"x86_64-linux"
|
|
];
|
|
problems = {
|
|
removal.message = "We have removed Python 3.3 package support ahead of upstream schedule but if you do not use any old packages, this should just work.";
|
|
}
|
|
// lib.optionalAttrs (lib.versionOlder buildVersion "4205") {
|
|
broken.message = "Packages, including core ones, do not run without plug-in host depending on insecure OpenSSL.";
|
|
};
|
|
};
|
|
})
|