2016-04-22 11:27:38 +01:00
|
|
|
{ stdenv, lib, callPackage, fetchurl, unzip, atomEnv, makeDesktopItem }:
|
|
|
|
|
2016-04-03 16:07:05 +01:00
|
|
|
let
|
2016-09-13 06:35:16 +01:00
|
|
|
version = "1.5.1";
|
|
|
|
rev = "07d663dc1bd848161edf4cd4ce30cce410d3d877";
|
2016-04-22 12:23:24 +01:00
|
|
|
|
2016-09-13 06:35:16 +01:00
|
|
|
sha256 = if stdenv.system == "i686-linux" then "1a2854snjdmfhzx6qwib4iw3qjhlmlf09dlsbbvh24zbrjphnd85"
|
|
|
|
else if stdenv.system == "x86_64-linux" then "0gg2ad7sp02ffv7la61hh9h4vfw8qkfladbhwlh5y4axbbrx17r7"
|
|
|
|
else if stdenv.system == "x86_64-darwin" then "18q4ldnmm619vv8yx6rznpznpcc19zjczmcidr34552i5qfg5xsz"
|
2016-04-04 17:12:11 +01:00
|
|
|
else throw "Unsupported system: ${stdenv.system}";
|
|
|
|
|
2016-09-13 06:35:16 +01:00
|
|
|
urlBase = "https://az764295.vo.msecnd.net/stable/${rev}/";
|
|
|
|
|
|
|
|
urlStr = if stdenv.system == "i686-linux" then
|
|
|
|
urlBase + "code-stable-code_${version}-1473369468_i386.tar.gz"
|
|
|
|
else if stdenv.system == "x86_64-linux" then
|
|
|
|
urlBase + "code-stable-code_${version}-1473370243_amd64.tar.gz"
|
|
|
|
else if stdenv.system == "x86_64-darwin" then
|
|
|
|
urlBase + "VSCode-darwin-stable.zip"
|
2016-04-04 17:12:11 +01:00
|
|
|
else throw "Unsupported system: ${stdenv.system}";
|
2016-04-03 16:07:05 +01:00
|
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "vscode-${version}";
|
2016-04-04 17:12:11 +01:00
|
|
|
inherit version;
|
2016-04-03 16:07:05 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2016-09-13 06:35:16 +01:00
|
|
|
url = urlStr;
|
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";
|
|
|
|
comment = "Visual Studio Code is a code editor redefined and optimized for building and debugging modern web and cloud applications";
|
|
|
|
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"
|
|
|
|
then [ unzip ]
|
|
|
|
else [ ];
|
2016-04-03 16:07:05 +01:00
|
|
|
|
|
|
|
installPhase = ''
|
2016-04-22 11:51:11 +01:00
|
|
|
mkdir -p $out/lib/vscode $out/bin
|
|
|
|
cp -r ./* $out/lib/vscode
|
|
|
|
ln -s $out/lib/vscode/code $out/bin
|
2016-04-22 11:27:38 +01:00
|
|
|
|
|
|
|
mkdir -p $out/share/applications
|
|
|
|
cp $desktopItem/share/applications/* $out/share/applications
|
|
|
|
|
|
|
|
mkdir -p $out/share/pixmaps
|
|
|
|
cp $out/lib/vscode/resources/app/resources/linux/code.png $out/share/pixmaps/code.png
|
2016-04-04 17:12:11 +01:00
|
|
|
'';
|
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)" \
|
|
|
|
--set-rpath "${atomEnv.libPath}:$out/lib/vscode" \
|
|
|
|
$out/lib/vscode/code
|
2016-04-03 16:07:05 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Visual Studio Code is an open source source code editor developed by Microsoft for Windows, Linux and OS X.";
|
|
|
|
longDescription = ''
|
|
|
|
Visual Studio Code is an 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.
|
|
|
|
'';
|
|
|
|
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
|
|
|
};
|
|
|
|
}
|