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