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

106 lines
3.7 KiB
Nix
Raw Normal View History

{ stdenv, lib, fetchurl, unzip, atomEnv, makeDesktopItem,
gtk2, makeWrapper, libXScrnSaver, libxkbfile, libsecret }:
2016-04-22 10:27:38 +00:00
2016-04-03 15:07:05 +00:00
let
2018-07-20 12:22:03 +00:00
version = "1.25.1";
2017-01-16 08:51:08 +00:00
channel = "stable";
2016-04-22 11:23:24 +00: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
sha256 = {
2018-07-20 12:22:03 +00:00
"i686-linux" = "1qljnajk4h9ki5gvydh1b557fvhvcryvkrvypvz0pr804lpdqsmg";
"x86_64-linux" = "0f1lpwyxfchmbymzzxv97w9cy1z5pdljhwm49mc5v84aygmvnmjq";
"x86_64-darwin" = "1dgda1drij1c114xzv4hs44k7rx4x1vzghlxgii0h2rg641n6pbn";
}.${stdenv.system};
archive_fmt = if stdenv.system == "x86_64-darwin" then "zip" else "tar.gz";
2016-09-13 05:35:16 +00:00
rpath = lib.concatStringsSep ":" [
atomEnv.libPath
"${lib.makeLibraryPath [gtk2]}"
2017-09-08 16:20:20 +00:00
"${lib.makeLibraryPath [libsecret]}/libsecret-1.so.0"
"${lib.makeLibraryPath [libXScrnSaver]}/libXss.so.1"
"${lib.makeLibraryPath [libxkbfile]}/libxkbfile.so.1"
"$out/lib/vscode"
];
2016-04-03 15:07:05 +00:00
in
stdenv.mkDerivation rec {
name = "vscode-${version}";
src = fetchurl {
name = "VSCode_${version}_${plat}.${archive_fmt}";
url = "https://vscode-update.azurewebsites.net/${version}/${plat}/${channel}";
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";
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 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"
2017-09-08 16:20:20 +00:00
then [ unzip makeWrapper libXScrnSaver libsecret ]
else [ makeWrapper libXScrnSaver libxkbfile libsecret ];
2016-04-03 15:07:05 +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-08-30 11:58:38 +00:00
substituteInPlace $out/lib/vscode/bin/code --replace '"$CLI" "$@"' '"$CLI" "--skip-getting-started" "$@"'
ln -s $out/lib/vscode/bin/code $out/bin
2016-04-22 10:27:38 +00:00
mkdir -p $out/share/applications
cp $desktopItem/share/applications/* $out/share/applications
2016-04-22 10:27:38 +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 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 "${rpath}" \
$out/lib/vscode/code
2017-09-08 16:20:20 +00:00
patchelf \
--set-rpath "${rpath}" \
2018-03-11 17:35:13 +00:00
$out/lib/vscode/resources/app/node_modules.asar.unpacked/keytar/build/Release/keytar.node
2017-09-08 16:20:20 +00:00
ln -s ${lib.makeLibraryPath [libsecret]}/libsecret-1.so.0 $out/lib/vscode/libsecret-1.so.0
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 macOS
2016-10-14 17:27:46 +00:00
'';
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 macOS. It includes support for debugging, embedded Git
2016-10-14 17:27:46 +00: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 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
};
}