mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 15:41:40 +00:00
Merge pull request #7266 from codyopel/sublime
sublimetext3: add .desktop entry & icon
This commit is contained in:
commit
bcc1d0339b
|
@ -38,8 +38,12 @@ in let
|
||||||
'';
|
'';
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
|
# Correct sublime_text.desktop to exec `sublime' instead of /opt/sublime_text
|
||||||
|
sed -e 's,/opt/sublime_text/sublime_text,sublime,' -i sublime_text.desktop
|
||||||
|
|
||||||
mkdir -p $out
|
mkdir -p $out
|
||||||
cp -prvd * $out/
|
cp -prvd * $out/
|
||||||
|
|
||||||
# Without this, plugin_host crashes, even though it has the rpath
|
# Without this, plugin_host crashes, even though it has the rpath
|
||||||
wrapProgram $out/plugin_host --prefix LD_PRELOAD : ${stdenv.cc.cc}/lib${stdenv.lib.optionalString stdenv.is64bit "64"}/libgcc_s.so.1:${openssl}/lib/libssl.so:${bzip2}/lib/libbz2.so
|
wrapProgram $out/plugin_host --prefix LD_PRELOAD : ${stdenv.cc.cc}/lib${stdenv.lib.optionalString stdenv.is64bit "64"}/libgcc_s.so.1:${openssl}/lib/libssl.so:${bzip2}/lib/libbz2.so
|
||||||
'';
|
'';
|
||||||
|
@ -52,11 +56,16 @@ in stdenv.mkDerivation {
|
||||||
mkdir -p $out/bin
|
mkdir -p $out/bin
|
||||||
ln -s ${sublime}/sublime_text $out/bin/sublime
|
ln -s ${sublime}/sublime_text $out/bin/sublime
|
||||||
ln -s ${sublime}/sublime_text $out/bin/sublime3
|
ln -s ${sublime}/sublime_text $out/bin/sublime3
|
||||||
|
mkdir -p $out/share/applications
|
||||||
|
ln -s ${sublime}/sublime_text.desktop $out/share/applications/sublime_text.desktop
|
||||||
|
ln -s ${sublime}/Icon/256x256/ $out/share/icons
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
description = "Sophisticated text editor for code, markup and prose";
|
description = "Sophisticated text editor for code, markup and prose";
|
||||||
maintainers = [ stdenv.lib.maintainers.wmertens ];
|
homepage = https://www.sublimetext.com/;
|
||||||
license = stdenv.lib.licenses.unfree;
|
maintainers = with maintainers; [ wmertens ];
|
||||||
|
license = licenses.unfree;
|
||||||
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue