2016-10-14 19:27:46 +02:00
|
|
|
{ stdenv, lib, callPackage, fetchurl, unzip, atomEnv, makeDesktopItem,
|
2017-09-08 18:20:20 +02:00
|
|
|
makeWrapper, libXScrnSaver, libxkbfile, libsecret }:
|
2016-04-22 12:27:38 +02:00
|
|
|
|
2016-04-03 17:07:05 +02:00
|
|
|
let
|
2018-02-07 23:30:13 +01:00
|
|
|
version = "1.20.0";
|
2017-01-16 09:51:08 +01:00
|
|
|
channel = "stable";
|
2016-04-22 13:23:24 +02:00
|
|
|
|
2017-04-07 04:18:18 +02:00
|
|
|
plat = {
|
|
|
|
"i686-linux" = "linux-ia32";
|
|
|
|
"x86_64-linux" = "linux-x64";
|
|
|
|
"x86_64-darwin" = "darwin";
|
|
|
|
}.${stdenv.system};
|
2017-02-06 08:29:49 +01:00
|
|
|
|
2017-04-07 04:18:18 +02:00
|
|
|
sha256 = {
|
2018-02-07 23:30:13 +01:00
|
|
|
"i686-linux" = "0lhfljcdb05v0p3kc6zimgd2z057397blfp56bhr7v7wnsi6i40k";
|
|
|
|
"x86_64-linux" = "138kvqa5cixry62yry0lwzxlk9fs8hb4zqzmsd8ag1jjfma8y45k";
|
|
|
|
"x86_64-darwin" = "1adnwlqf2kw8wfjf86a3xg83j1yqnlsdckksw82b06x3j11g91i8";
|
2017-04-07 04:18:18 +02:00
|
|
|
}.${stdenv.system};
|
2016-04-04 18:12:11 +02:00
|
|
|
|
2017-04-07 04:18:18 +02:00
|
|
|
archive_fmt = if stdenv.system == "x86_64-darwin" then "zip" else "tar.gz";
|
2016-09-13 07:35:16 +02:00
|
|
|
|
2017-04-07 05:35:49 +02:00
|
|
|
rpath = lib.concatStringsSep ":" [
|
|
|
|
atomEnv.libPath
|
2017-09-08 18:20:20 +02:00
|
|
|
"${lib.makeLibraryPath [libsecret]}/libsecret-1.so.0"
|
2017-04-07 05:35:49 +02:00
|
|
|
"${lib.makeLibraryPath [libXScrnSaver]}/libXss.so.1"
|
|
|
|
"${lib.makeLibraryPath [libxkbfile]}/libxkbfile.so.1"
|
|
|
|
"$out/lib/vscode"
|
|
|
|
];
|
|
|
|
|
2016-04-03 17:07:05 +02:00
|
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "vscode-${version}";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2017-04-07 04:18:18 +02:00
|
|
|
name = "VSCode_${version}_${plat}.${archive_fmt}";
|
|
|
|
url = "https://vscode-update.azurewebsites.net/${version}/${plat}/${channel}";
|
2016-04-04 18:12:11 +02:00
|
|
|
inherit sha256;
|
2016-04-03 17:07:05 +02:00
|
|
|
};
|
|
|
|
|
2016-04-22 12:27:38 +02:00
|
|
|
desktopItem = makeDesktopItem {
|
|
|
|
name = "code";
|
|
|
|
exec = "code";
|
|
|
|
icon = "code";
|
2017-01-16 10:03:47 +01:00
|
|
|
comment = "Code editor redefined and optimized for building and debugging modern web and cloud applications";
|
2016-04-22 12:27:38 +02:00
|
|
|
desktopName = "Visual Studio Code";
|
|
|
|
genericName = "Text Editor";
|
|
|
|
categories = "GNOME;GTK;Utility;TextEditor;Development;";
|
|
|
|
};
|
|
|
|
|
2016-09-13 07:35:16 +02:00
|
|
|
buildInputs = if stdenv.system == "x86_64-darwin"
|
2017-09-08 18:20:20 +02:00
|
|
|
then [ unzip makeWrapper libXScrnSaver libsecret ]
|
|
|
|
else [ makeWrapper libXScrnSaver libxkbfile libsecret ];
|
2016-04-03 17:07:05 +02:00
|
|
|
|
2017-03-24 21:05:59 +01:00
|
|
|
installPhase =
|
|
|
|
if stdenv.system == "x86_64-darwin" then ''
|
|
|
|
mkdir -p $out/lib/vscode $out/bin
|
|
|
|
cp -r ./* $out/lib/vscode
|
|
|
|
ln -s $out/lib/vscode/Contents/Resources/app/bin/code $out/bin
|
|
|
|
'' else ''
|
|
|
|
mkdir -p $out/lib/vscode $out/bin
|
|
|
|
cp -r ./* $out/lib/vscode
|
2017-08-30 13:58:38 +02:00
|
|
|
|
|
|
|
substituteInPlace $out/lib/vscode/bin/code --replace '"$CLI" "$@"' '"$CLI" "--skip-getting-started" "$@"'
|
|
|
|
|
2017-03-31 20:19:55 +02:00
|
|
|
ln -s $out/lib/vscode/bin/code $out/bin
|
2016-04-22 12:27:38 +02:00
|
|
|
|
2017-03-24 21:05:59 +01:00
|
|
|
mkdir -p $out/share/applications
|
|
|
|
cp $desktopItem/share/applications/* $out/share/applications
|
2016-04-22 12:27:38 +02:00
|
|
|
|
2017-03-24 21:05:59 +01:00
|
|
|
mkdir -p $out/share/pixmaps
|
|
|
|
cp $out/lib/vscode/resources/app/resources/linux/code.png $out/share/pixmaps/code.png
|
|
|
|
'';
|
2016-04-03 17:07:05 +02:00
|
|
|
|
2016-04-22 16:44:30 +02:00
|
|
|
postFixup = lib.optionalString (stdenv.system == "i686-linux" || stdenv.system == "x86_64-linux") ''
|
2016-04-22 12:51:11 +02:00
|
|
|
patchelf \
|
|
|
|
--set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \
|
2017-04-07 05:35:49 +02:00
|
|
|
--set-rpath "${rpath}" \
|
2016-04-22 12:51:11 +02:00
|
|
|
$out/lib/vscode/code
|
2017-09-08 18:20:20 +02:00
|
|
|
|
|
|
|
patchelf \
|
|
|
|
--set-rpath "${rpath}" \
|
|
|
|
$out/lib/vscode/resources/app/node_modules/keytar/build/Release/keytar.node
|
|
|
|
|
|
|
|
ln -s ${lib.makeLibraryPath [libsecret]}/libsecret-1.so.0 $out/lib/vscode/libsecret-1.so.0
|
2016-04-03 17:07:05 +02:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2016-10-14 19:27:46 +02:00
|
|
|
description = ''
|
|
|
|
Open source source code editor developed by Microsoft for Windows,
|
2017-08-07 00:05:18 +02:00
|
|
|
Linux and macOS
|
2016-10-14 19:27:46 +02:00
|
|
|
'';
|
2016-04-03 17:07:05 +02:00
|
|
|
longDescription = ''
|
2016-10-14 19:27:46 +02:00
|
|
|
Open source source code editor developed by Microsoft for Windows,
|
2017-08-07 00:05:18 +02:00
|
|
|
Linux and macOS. It includes support for debugging, embedded Git
|
2016-10-14 19:27:46 +02: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 17:07:05 +02:00
|
|
|
'';
|
|
|
|
homepage = http://code.visualstudio.com/;
|
2016-04-04 18:12:11 +02:00
|
|
|
downloadPage = https://code.visualstudio.com/Updates;
|
|
|
|
license = licenses.unfree;
|
|
|
|
platforms = [ "i686-linux" "x86_64-linux" "x86_64-darwin" ];
|
2016-04-03 17:07:05 +02:00
|
|
|
};
|
|
|
|
}
|