2018-07-21 00:44:44 +00:00
|
|
|
{ stdenv, lib, fetchurl, unzip, atomEnv, makeDesktopItem,
|
2018-11-04 01:29:00 +00:00
|
|
|
gtk2, wrapGAppsHook, libXScrnSaver, libxkbfile, libsecret,
|
|
|
|
isInsiders ? false }:
|
2016-04-22 10:27:38 +00:00
|
|
|
|
2016-04-03 15:07:05 +00:00
|
|
|
let
|
2018-11-04 01:29:00 +00:00
|
|
|
executableName = "code" + lib.optionalString isInsiders "-insiders";
|
2016-04-22 11:23:24 +00:00
|
|
|
|
2017-04-07 02:18:18 +00:00
|
|
|
plat = {
|
|
|
|
"i686-linux" = "linux-ia32";
|
|
|
|
"x86_64-linux" = "linux-x64";
|
|
|
|
"x86_64-darwin" = "darwin";
|
2018-08-20 19:11:29 +00:00
|
|
|
}.${stdenv.hostPlatform.system};
|
2017-02-06 07:29:49 +00:00
|
|
|
|
2017-04-07 02:18:18 +00:00
|
|
|
sha256 = {
|
2018-12-18 21:44:12 +00:00
|
|
|
"i686-linux" = "1xadkgqfwsl53blm2f0kdvczwmag47585dswa1hpafzc8i86009b";
|
|
|
|
"x86_64-linux" = "0h77kc6z9c5bkkb8svjxjabnbbv0lb835kzd1c2yypamkhag9j4a";
|
|
|
|
"x86_64-darwin" = "1f8grgav5capd2mm1nx0416na8c6qjh91680cfvf1jh4pjihs6g4";
|
2018-08-20 19:11:29 +00:00
|
|
|
}.${stdenv.hostPlatform.system};
|
2016-04-04 16:12:11 +00:00
|
|
|
|
2018-08-20 19:11:29 +00:00
|
|
|
archive_fmt = if stdenv.hostPlatform.system == "x86_64-darwin" then "zip" else "tar.gz";
|
2016-09-13 05:35:16 +00:00
|
|
|
|
2017-04-07 03:35:49 +00:00
|
|
|
rpath = lib.concatStringsSep ":" [
|
|
|
|
atomEnv.libPath
|
2018-07-07 01:57:29 +00:00
|
|
|
"${lib.makeLibraryPath [gtk2]}"
|
2017-09-08 16:20:20 +00:00
|
|
|
"${lib.makeLibraryPath [libsecret]}/libsecret-1.so.0"
|
2017-04-07 03:35:49 +00:00
|
|
|
"${lib.makeLibraryPath [libXScrnSaver]}/libXss.so.1"
|
|
|
|
"${lib.makeLibraryPath [libxkbfile]}/libxkbfile.so.1"
|
|
|
|
"$out/lib/vscode"
|
|
|
|
];
|
|
|
|
|
2016-04-03 15:07:05 +00:00
|
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "vscode-${version}";
|
2018-12-18 21:44:12 +00:00
|
|
|
version = "1.30.1";
|
2016-04-03 15:07:05 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2017-04-07 02:18:18 +00:00
|
|
|
name = "VSCode_${version}_${plat}.${archive_fmt}";
|
2018-11-04 01:29:00 +00:00
|
|
|
url = "https://vscode-update.azurewebsites.net/${version}/${plat}/stable";
|
2016-04-04 16:12:11 +00:00
|
|
|
inherit sha256;
|
2016-04-03 15:07:05 +00:00
|
|
|
};
|
|
|
|
|
2018-11-04 01:29:00 +00:00
|
|
|
passthru = {
|
|
|
|
inherit executableName;
|
|
|
|
};
|
|
|
|
|
2016-04-22 10:27:38 +00:00
|
|
|
desktopItem = makeDesktopItem {
|
2018-11-04 01:29:00 +00:00
|
|
|
name = executableName;
|
|
|
|
exec = executableName;
|
|
|
|
icon = "@out@/share/pixmaps/code.png";
|
2017-01-16 09:03:47 +00:00
|
|
|
comment = "Code editor redefined and optimized for building and debugging modern web and cloud applications";
|
2018-11-04 01:29:00 +00:00
|
|
|
desktopName = "Visual Studio Code" + lib.optionalString isInsiders " Insiders";
|
2016-04-22 10:27:38 +00:00
|
|
|
genericName = "Text Editor";
|
|
|
|
categories = "GNOME;GTK;Utility;TextEditor;Development;";
|
|
|
|
};
|
|
|
|
|
2018-08-20 19:11:29 +00:00
|
|
|
buildInputs = if stdenv.hostPlatform.system == "x86_64-darwin"
|
2018-08-18 00:30:14 +00:00
|
|
|
then [ unzip libXScrnSaver libsecret ]
|
|
|
|
else [ wrapGAppsHook libXScrnSaver libxkbfile libsecret ];
|
2016-04-03 15:07:05 +00:00
|
|
|
|
2017-03-24 20:05:59 +00:00
|
|
|
installPhase =
|
2018-08-20 19:11:29 +00:00
|
|
|
if stdenv.hostPlatform.system == "x86_64-darwin" then ''
|
2017-03-24 20:05:59 +00:00
|
|
|
mkdir -p $out/lib/vscode $out/bin
|
|
|
|
cp -r ./* $out/lib/vscode
|
2018-11-04 01:29:00 +00:00
|
|
|
ln -s $out/lib/vscode/Contents/Resources/app/bin/${executableName} $out/bin
|
2017-03-24 20:05:59 +00:00
|
|
|
'' else ''
|
|
|
|
mkdir -p $out/lib/vscode $out/bin
|
|
|
|
cp -r ./* $out/lib/vscode
|
2017-08-30 11:58:38 +00:00
|
|
|
|
2018-11-04 01:29:00 +00:00
|
|
|
substituteInPlace $out/lib/vscode/bin/${executableName} --replace '"$CLI" "$@"' '"$CLI" "--skip-getting-started" "$@"'
|
2017-08-30 11:58:38 +00:00
|
|
|
|
2018-11-04 01:29:00 +00:00
|
|
|
ln -s $out/lib/vscode/bin/${executableName} $out/bin
|
2016-04-22 10:27:38 +00:00
|
|
|
|
2017-03-24 20:05:59 +00:00
|
|
|
mkdir -p $out/share/applications
|
2018-11-04 01:29:00 +00:00
|
|
|
substitute $desktopItem/share/applications/${executableName}.desktop $out/share/applications/${executableName}.desktop \
|
|
|
|
--subst-var out
|
2016-04-22 10:27:38 +00:00
|
|
|
|
2017-03-24 20:05:59 +00:00
|
|
|
mkdir -p $out/share/pixmaps
|
|
|
|
cp $out/lib/vscode/resources/app/resources/linux/code.png $out/share/pixmaps/code.png
|
|
|
|
'';
|
2016-04-03 15:07:05 +00:00
|
|
|
|
2018-08-20 19:11:29 +00:00
|
|
|
postFixup = lib.optionalString (stdenv.hostPlatform.system == "i686-linux" || stdenv.hostPlatform.system == "x86_64-linux") ''
|
2016-04-22 10:51:11 +00:00
|
|
|
patchelf \
|
|
|
|
--set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \
|
2017-04-07 03:35:49 +00:00
|
|
|
--set-rpath "${rpath}" \
|
2018-11-04 01:29:00 +00:00
|
|
|
$out/lib/vscode/${executableName}
|
2017-09-08 16:20:20 +00:00
|
|
|
|
|
|
|
patchelf \
|
|
|
|
--set-rpath "${rpath}" \
|
2018-03-11 17:35:13 +00:00
|
|
|
$out/lib/vscode/resources/app/node_modules.asar.unpacked/keytar/build/Release/keytar.node
|
2017-09-08 16:20:20 +00:00
|
|
|
|
2018-07-24 01:01:19 +00:00
|
|
|
patchelf \
|
|
|
|
--set-rpath "${rpath}" \
|
|
|
|
"$out/lib/vscode/resources/app/node_modules.asar.unpacked/native-keymap/build/Release/\
|
|
|
|
keymapping.node"
|
|
|
|
|
2017-09-08 16:20:20 +00:00
|
|
|
ln -s ${lib.makeLibraryPath [libsecret]}/libsecret-1.so.0 $out/lib/vscode/libsecret-1.so.0
|
2016-04-03 15:07:05 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2016-10-14 17:27:46 +00:00
|
|
|
description = ''
|
|
|
|
Open source source code editor developed by Microsoft for Windows,
|
2017-08-06 22:05:18 +00:00
|
|
|
Linux and macOS
|
2016-10-14 17:27:46 +00:00
|
|
|
'';
|
2016-04-03 15:07:05 +00:00
|
|
|
longDescription = ''
|
2016-10-14 17:27:46 +00:00
|
|
|
Open source source code editor developed by Microsoft for Windows,
|
2017-08-06 22:05:18 +00:00
|
|
|
Linux and macOS. It includes support for debugging, embedded Git
|
2016-10-14 17:27:46 +00:00
|
|
|
control, syntax highlighting, intelligent code completion, snippets,
|
|
|
|
and code refactoring. It is also customizable, so users can change the
|
|
|
|
editor's theme, keyboard shortcuts, and preferences
|
2016-04-03 15:07:05 +00:00
|
|
|
'';
|
|
|
|
homepage = http://code.visualstudio.com/;
|
2016-04-04 16:12:11 +00:00
|
|
|
downloadPage = https://code.visualstudio.com/Updates;
|
|
|
|
license = licenses.unfree;
|
|
|
|
platforms = [ "i686-linux" "x86_64-linux" "x86_64-darwin" ];
|
2016-04-03 15:07:05 +00:00
|
|
|
};
|
|
|
|
}
|