nixpkgs/pkgs/applications/editors/vscode/default.nix

90 lines
3.3 KiB
Nix
Raw Normal View History

2016-10-14 17:27:46 +00:00
{ stdenv, lib, callPackage, fetchurl, unzip, atomEnv, makeDesktopItem,
makeWrapper, libXScrnSaver }:
2016-04-22 10:27:38 +00:00
2016-04-03 15:07:05 +00:00
let
2017-01-16 08:51:08 +00:00
version = "1.8.1";
rev = "ee428b0eead68bf0fb99ab5fdc4439be227b6281";
channel = "stable";
2016-04-22 11:23:24 +00:00
2017-01-16 08:51:08 +00:00
sha256 = if stdenv.system == "i686-linux" then "f48c2eb302de0742612f6c5e4ec4842fa474a85c1bcf421456526c9472d4641f"
else if stdenv.system == "x86_64-linux" then "99bd463707f3a21bc949eec3e857c80aafef8f66e06a295148c1c23875244760"
else if stdenv.system == "x86_64-darwin" then "9202c85669853b07d1cbac9e6bcb01e7c08e13fd2a2b759dd53994e0fa51e7a1"
else throw "Unsupported system: ${stdenv.system}";
2017-01-16 08:51:08 +00:00
urlBase = "https://az764295.vo.msecnd.net/${channel}/${rev}/";
2016-09-13 05:35:16 +00:00
urlStr = if stdenv.system == "i686-linux" then
2017-01-16 08:51:08 +00:00
urlBase + "code-${channel}-code_${version}-1482159060_i386.tar.gz"
2016-09-13 05:35:16 +00:00
else if stdenv.system == "x86_64-linux" then
2017-01-16 08:51:08 +00:00
urlBase + "code-${channel}-code_${version}-1482158209_amd64.tar.gz"
2016-09-13 05:35:16 +00:00
else if stdenv.system == "x86_64-darwin" then
2017-01-16 08:51:08 +00:00
urlBase + "VSCode-darwin-${channel}.zip"
else throw "Unsupported system: ${stdenv.system}";
2016-04-03 15:07:05 +00:00
in
stdenv.mkDerivation rec {
name = "vscode-${version}";
inherit version;
2016-04-03 15:07:05 +00:00
src = fetchurl {
2016-09-13 05:35:16 +00:00
url = urlStr;
inherit sha256;
2016-04-03 15:07:05 +00:00
};
2016-04-22 10:27:38 +00:00
desktopItem = makeDesktopItem {
name = "code";
exec = "code";
icon = "code";
2016-10-14 17:27:46 +00:00
comment = ''
Code editor redefined and optimized for building and debugging modern
web and cloud applications
'';
2016-04-22 10:27:38 +00:00
desktopName = "Visual Studio Code";
genericName = "Text Editor";
categories = "GNOME;GTK;Utility;TextEditor;Development;";
};
2016-09-13 05:35:16 +00:00
buildInputs = if stdenv.system == "x86_64-darwin"
2016-10-14 17:27:46 +00:00
then [ unzip makeWrapper libXScrnSaver ]
else [ makeWrapper libXScrnSaver ];
2016-04-03 15:07:05 +00:00
installPhase = ''
mkdir -p $out/lib/vscode $out/bin
cp -r ./* $out/lib/vscode
ln -s $out/lib/vscode/code $out/bin
2016-04-22 10:27:38 +00: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-03 15:07:05 +00:00
postFixup = lib.optionalString (stdenv.system == "i686-linux" || stdenv.system == "x86_64-linux") ''
patchelf \
--set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \
--set-rpath "${atomEnv.libPath}:$out/lib/vscode" \
$out/lib/vscode/code
2016-10-14 17:27:46 +00:00
wrapProgram $out/bin/code \
--prefix LD_PRELOAD : ${stdenv.lib.makeLibraryPath [ libXScrnSaver ]}/libXss.so.1
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,
Linux and OS X
'';
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,
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 15:07:05 +00:00
'';
homepage = http://code.visualstudio.com/;
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
};
}