2018-04-06 16:31:10 +00:00
|
|
|
{buildVersion, x32sha256, x64sha256}:
|
|
|
|
|
2016-09-11 21:24:51 +00:00
|
|
|
{ fetchurl, stdenv, glib, xorg, cairo, gtk2, pango, makeWrapper, openssl, bzip2,
|
2017-01-29 10:11:01 +00:00
|
|
|
pkexecPath ? "/run/wrappers/bin/pkexec", libredirect,
|
2018-04-06 16:31:10 +00:00
|
|
|
gksuSupport ? false, gksu, unzip, zip, bash}:
|
2014-06-01 15:59:00 +00:00
|
|
|
|
2015-10-24 15:14:59 +00:00
|
|
|
assert gksuSupport -> gksu != null;
|
2014-06-01 15:59:00 +00:00
|
|
|
|
2014-01-25 20:45:08 +00:00
|
|
|
let
|
2018-04-06 16:31:10 +00:00
|
|
|
|
2016-09-11 21:24:51 +00:00
|
|
|
libPath = stdenv.lib.makeLibraryPath [glib xorg.libX11 gtk2 cairo pango];
|
2015-10-24 15:14:59 +00:00
|
|
|
redirects = [ "/usr/bin/pkexec=${pkexecPath}" ]
|
|
|
|
++ stdenv.lib.optional gksuSupport "/usr/bin/gksudo=${gksu}/bin/gksudo";
|
2014-06-01 15:59:00 +00:00
|
|
|
in let
|
2018-04-06 16:31:10 +00:00
|
|
|
archSha256 =
|
|
|
|
if stdenv.system == "i686-linux" then
|
|
|
|
x32sha256
|
|
|
|
else
|
|
|
|
x64sha256;
|
|
|
|
|
|
|
|
arch =
|
|
|
|
if stdenv.system == "i686-linux" then
|
|
|
|
"x32"
|
|
|
|
else
|
|
|
|
"x64";
|
|
|
|
|
2014-06-01 15:59:00 +00:00
|
|
|
# package with just the binaries
|
|
|
|
sublime = stdenv.mkDerivation {
|
2018-04-06 16:31:10 +00:00
|
|
|
name = "sublimetext3-${buildVersion}-bin";
|
2014-06-01 15:59:00 +00:00
|
|
|
src =
|
2018-04-06 16:31:10 +00:00
|
|
|
fetchurl {
|
|
|
|
name = "sublimetext-${buildVersion}.tar.bz2";
|
|
|
|
url = "https://download.sublimetext.com/sublime_text_3_build_${buildVersion}_${arch}.tar.bz2";
|
|
|
|
sha256 = archSha256;
|
|
|
|
};
|
2014-01-25 20:45:08 +00:00
|
|
|
|
2014-06-01 15:59:00 +00:00
|
|
|
dontStrip = true;
|
|
|
|
dontPatchELF = true;
|
2017-08-15 18:34:10 +00:00
|
|
|
buildInputs = [ makeWrapper zip unzip ];
|
2014-06-01 15:59:00 +00:00
|
|
|
|
2017-03-15 10:32:44 +00:00
|
|
|
# make exec.py in Default.sublime-package use own bash with
|
|
|
|
# an LD_PRELOAD instead of "/bin/bash"
|
|
|
|
patchPhase = ''
|
|
|
|
mkdir Default.sublime-package-fix
|
|
|
|
( cd Default.sublime-package-fix
|
2017-08-15 18:34:10 +00:00
|
|
|
unzip -q ../Packages/Default.sublime-package
|
2017-03-15 10:32:44 +00:00
|
|
|
substituteInPlace "exec.py" --replace \
|
|
|
|
"[\"/bin/bash\"" \
|
|
|
|
"[\"$out/sublime_bash\""
|
2017-08-15 18:34:10 +00:00
|
|
|
zip -q ../Packages/Default.sublime-package **/*
|
2017-03-15 10:32:44 +00:00
|
|
|
)
|
|
|
|
rm -r Default.sublime-package-fix
|
|
|
|
'';
|
|
|
|
|
2014-06-01 15:59:00 +00:00
|
|
|
buildPhase = ''
|
|
|
|
for i in sublime_text plugin_host crash_reporter; do
|
|
|
|
patchelf \
|
2014-12-17 18:11:30 +00:00
|
|
|
--interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \
|
2016-04-30 20:56:43 +00:00
|
|
|
--set-rpath ${libPath}:${stdenv.cc.cc.lib}/lib${stdenv.lib.optionalString stdenv.is64bit "64"} \
|
2014-06-01 15:59:00 +00:00
|
|
|
$i
|
|
|
|
done
|
2015-10-24 15:14:59 +00:00
|
|
|
|
|
|
|
# Rewrite pkexec|gksudo argument. Note that we can't delete bytes in binary.
|
|
|
|
sed -i -e 's,/bin/cp\x00,cp\x00\x00\x00\x00\x00\x00,g' sublime_text
|
2014-06-01 15:59:00 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
2015-04-08 13:05:06 +00:00
|
|
|
# Correct sublime_text.desktop to exec `sublime' instead of /opt/sublime_text
|
2017-11-16 11:01:05 +00:00
|
|
|
sed -e "s,/opt/sublime_text/sublime_text,$out/sublime_text," -i sublime_text.desktop
|
2015-04-08 13:05:06 +00:00
|
|
|
|
2014-06-01 15:59:00 +00:00
|
|
|
mkdir -p $out
|
|
|
|
cp -prvd * $out/
|
2015-04-08 13:05:06 +00:00
|
|
|
|
2017-03-15 10:32:44 +00:00
|
|
|
# We can't just call /usr/bin/env bash because a relocation error occurs
|
|
|
|
# when trying to run a build from within Sublime Text
|
|
|
|
ln -s ${bash}/bin/bash $out/sublime_bash
|
|
|
|
wrapProgram $out/sublime_bash \
|
|
|
|
--set LD_PRELOAD "${stdenv.cc.cc.lib}/lib${stdenv.lib.optionalString stdenv.is64bit "64"}/libgcc_s.so.1"
|
|
|
|
|
2015-10-24 15:14:59 +00:00
|
|
|
wrapProgram $out/sublime_text \
|
|
|
|
--set LD_PRELOAD "${libredirect}/lib/libredirect.so" \
|
|
|
|
--set NIX_REDIRECTS ${builtins.concatStringsSep ":" redirects}
|
|
|
|
|
2014-06-01 15:59:00 +00:00
|
|
|
# Without this, plugin_host crashes, even though it has the rpath
|
2016-04-30 20:56:43 +00:00
|
|
|
wrapProgram $out/plugin_host --prefix LD_PRELOAD : ${stdenv.cc.cc.lib}/lib${stdenv.lib.optionalString stdenv.is64bit "64"}/libgcc_s.so.1:${openssl.out}/lib/libssl.so:${bzip2.out}/lib/libbz2.so
|
2014-06-01 15:59:00 +00:00
|
|
|
'';
|
|
|
|
};
|
2018-04-06 16:31:10 +00:00
|
|
|
in stdenv.mkDerivation (rec {
|
|
|
|
name = "sublimetext3-${buildVersion}";
|
2014-06-01 15:59:00 +00:00
|
|
|
|
|
|
|
phases = [ "installPhase" ];
|
2017-08-15 18:34:10 +00:00
|
|
|
|
|
|
|
inherit sublime;
|
|
|
|
|
2014-06-01 15:59:00 +00:00
|
|
|
installPhase = ''
|
2014-01-25 20:45:08 +00:00
|
|
|
mkdir -p $out/bin
|
2017-11-16 11:01:05 +00:00
|
|
|
|
|
|
|
cat > $out/bin/subl <<-EOF
|
|
|
|
#!/bin/sh
|
|
|
|
exec $sublime/sublime_text "\$@"
|
|
|
|
EOF
|
|
|
|
chmod +x $out/bin/subl
|
|
|
|
|
|
|
|
ln $out/bin/subl $out/bin/sublime
|
|
|
|
ln $out/bin/subl $out/bin/sublime3
|
2015-04-08 13:05:06 +00:00
|
|
|
mkdir -p $out/share/applications
|
2017-08-15 18:34:10 +00:00
|
|
|
ln -s $sublime/sublime_text.desktop $out/share/applications/sublime_text.desktop
|
|
|
|
ln -s $sublime/Icon/256x256/ $out/share/icons
|
2014-01-25 20:45:08 +00:00
|
|
|
'';
|
|
|
|
|
2015-04-08 13:05:06 +00:00
|
|
|
meta = with stdenv.lib; {
|
2014-01-25 20:45:08 +00:00
|
|
|
description = "Sophisticated text editor for code, markup and prose";
|
2015-04-08 13:05:06 +00:00
|
|
|
homepage = https://www.sublimetext.com/;
|
2016-05-13 10:36:50 +00:00
|
|
|
maintainers = with maintainers; [ wmertens demin-dmitriy zimbatm ];
|
2015-04-08 13:05:06 +00:00
|
|
|
license = licenses.unfree;
|
2018-05-03 05:58:11 +00:00
|
|
|
platforms = [ "x86_64-linux" "i686-linux" ];
|
2014-01-25 20:45:08 +00:00
|
|
|
};
|
2018-04-06 16:31:10 +00:00
|
|
|
})
|