2016-10-14 10:27:46 -07:00
|
|
|
{ stdenv, lib, callPackage, fetchurl, unzip, atomEnv, makeDesktopItem,
|
|
|
|
makeWrapper, libXScrnSaver }:
|
2016-04-22 03:27:38 -07:00
|
|
|
|
2016-04-03 08:07:05 -07:00
|
|
|
let
|
2017-03-24 13:05:59 -07:00
|
|
|
version = "1.10.2";
|
|
|
|
rev = "8076a19fdcab7e1fc1707952d652f0bb6c6db331";
|
2017-01-16 00:51:08 -08:00
|
|
|
channel = "stable";
|
2016-04-22 04:23:24 -07:00
|
|
|
|
2017-02-05 23:29:49 -08:00
|
|
|
# The revision can be obtained with the following command (see https://github.com/NixOS/nixpkgs/issues/22465):
|
|
|
|
# curl -w "%{url_effective}\n" -I -L -s -S https://vscode-update.azurewebsites.net/latest/linux-x64/stable -o /dev/null
|
|
|
|
|
2017-03-24 13:05:59 -07:00
|
|
|
sha256 = if stdenv.system == "i686-linux" then "1rhwrpv17c8j06qja7i58cggzka8jm9v9h27jy22z30yxjz0p241"
|
|
|
|
else if stdenv.system == "x86_64-linux" then "1c1w7wc39a5vdap8j143ym976p9l9iwns1y28mcgjwrihdlb5wb8"
|
|
|
|
else if stdenv.system == "x86_64-darwin" then "1zznsn84k79lqirzv950q7caq7c88yh2gglwjc11y8k69awmlpva"
|
2016-04-04 09:12:11 -07:00
|
|
|
else throw "Unsupported system: ${stdenv.system}";
|
|
|
|
|
2017-01-16 00:51:08 -08:00
|
|
|
urlBase = "https://az764295.vo.msecnd.net/${channel}/${rev}/";
|
2016-09-12 22:35:16 -07:00
|
|
|
|
|
|
|
urlStr = if stdenv.system == "i686-linux" then
|
2017-03-24 13:05:59 -07:00
|
|
|
urlBase + "code-${channel}-code_${version}-1488982317_i386.tar.gz"
|
2016-09-12 22:35:16 -07:00
|
|
|
else if stdenv.system == "x86_64-linux" then
|
2017-03-24 13:05:59 -07:00
|
|
|
urlBase + "code-${channel}-code_${version}-1488981323_amd64.tar.gz"
|
2016-09-12 22:35:16 -07:00
|
|
|
else if stdenv.system == "x86_64-darwin" then
|
2017-01-16 00:51:08 -08:00
|
|
|
urlBase + "VSCode-darwin-${channel}.zip"
|
2016-04-04 09:12:11 -07:00
|
|
|
else throw "Unsupported system: ${stdenv.system}";
|
2016-04-03 08:07:05 -07:00
|
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "vscode-${version}";
|
2016-04-04 09:12:11 -07:00
|
|
|
inherit version;
|
2016-04-03 08:07:05 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
2016-09-12 22:35:16 -07:00
|
|
|
url = urlStr;
|
2016-04-04 09:12:11 -07:00
|
|
|
inherit sha256;
|
2016-04-03 08:07:05 -07:00
|
|
|
};
|
|
|
|
|
2016-04-22 03:27:38 -07:00
|
|
|
desktopItem = makeDesktopItem {
|
|
|
|
name = "code";
|
|
|
|
exec = "code";
|
|
|
|
icon = "code";
|
2017-01-16 01:03:47 -08:00
|
|
|
comment = "Code editor redefined and optimized for building and debugging modern web and cloud applications";
|
2016-04-22 03:27:38 -07:00
|
|
|
desktopName = "Visual Studio Code";
|
|
|
|
genericName = "Text Editor";
|
|
|
|
categories = "GNOME;GTK;Utility;TextEditor;Development;";
|
|
|
|
};
|
|
|
|
|
2016-09-12 22:35:16 -07:00
|
|
|
buildInputs = if stdenv.system == "x86_64-darwin"
|
2016-10-14 10:27:46 -07:00
|
|
|
then [ unzip makeWrapper libXScrnSaver ]
|
|
|
|
else [ makeWrapper libXScrnSaver ];
|
2016-04-03 08:07:05 -07:00
|
|
|
|
2017-03-24 13:05:59 -07: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
|
|
|
|
ln -s $out/lib/vscode/code $out/bin
|
2016-04-22 03:27:38 -07:00
|
|
|
|
2017-03-24 13:05:59 -07:00
|
|
|
mkdir -p $out/share/applications
|
|
|
|
cp $desktopItem/share/applications/* $out/share/applications
|
2016-04-22 03:27:38 -07:00
|
|
|
|
2017-03-24 13:05:59 -07:00
|
|
|
mkdir -p $out/share/pixmaps
|
|
|
|
cp $out/lib/vscode/resources/app/resources/linux/code.png $out/share/pixmaps/code.png
|
|
|
|
'';
|
2016-04-03 08:07:05 -07:00
|
|
|
|
2016-04-22 07:44:30 -07:00
|
|
|
postFixup = lib.optionalString (stdenv.system == "i686-linux" || stdenv.system == "x86_64-linux") ''
|
2016-04-22 03:51:11 -07:00
|
|
|
patchelf \
|
|
|
|
--set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \
|
|
|
|
--set-rpath "${atomEnv.libPath}:$out/lib/vscode" \
|
|
|
|
$out/lib/vscode/code
|
2016-10-14 10:27:46 -07:00
|
|
|
|
|
|
|
wrapProgram $out/bin/code \
|
|
|
|
--prefix LD_PRELOAD : ${stdenv.lib.makeLibraryPath [ libXScrnSaver ]}/libXss.so.1
|
2016-04-03 08:07:05 -07:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2016-10-14 10:27:46 -07:00
|
|
|
description = ''
|
|
|
|
Open source source code editor developed by Microsoft for Windows,
|
|
|
|
Linux and OS X
|
|
|
|
'';
|
2016-04-03 08:07:05 -07:00
|
|
|
longDescription = ''
|
2016-10-14 10:27:46 -07: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 08:07:05 -07:00
|
|
|
'';
|
|
|
|
homepage = http://code.visualstudio.com/;
|
2016-04-04 09:12:11 -07:00
|
|
|
downloadPage = https://code.visualstudio.com/Updates;
|
|
|
|
license = licenses.unfree;
|
|
|
|
platforms = [ "i686-linux" "x86_64-linux" "x86_64-darwin" ];
|
2016-04-03 08:07:05 -07:00
|
|
|
};
|
|
|
|
}
|