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

136 lines
4.7 KiB
Nix
Raw Normal View History

2018-12-17 03:09:21 +00:00
{ stdenv, lib, fetchurl, makeDesktopItem
, unzip, libsecret, libXScrnSaver, wrapGAppsHook
, gtk2, atomEnv, at-spi2-atk, autoPatchelfHook
, systemd, fontconfig
, isInsiders ? false }:
2016-04-22 10:27:38 +00:00
2016-04-03 15:07:05 +00:00
let
executableName = "code" + lib.optionalString isInsiders "-insiders";
longName = "Visual Studio Code" + lib.optionalString isInsiders " - Insiders";
shortName = "Code" + lib.optionalString isInsiders " - Insiders";
2016-04-22 11:23:24 +00:00
inherit (stdenv.hostPlatform) system;
plat = {
"i686-linux" = "linux-ia32";
"x86_64-linux" = "linux-x64";
"x86_64-darwin" = "darwin";
}.${system};
2017-02-06 07:29:49 +00:00
sha256 = {
2019-04-11 22:10:42 +00:00
"i686-linux" = "0n2k134yx0zirddi5xig4zihn73s8xiga11pwk90f01wp1i0hygg";
"x86_64-linux" = "0ljijcqfyrfck5imldis3hx9d9iacnspgnm58kvlziam8y0imwzv";
"x86_64-darwin" = "00fg106rggsbng90k1jjp1c6nmnwni5s0fgmbz6k45shfa3iqamc";
2019-02-06 22:17:41 +00:00
}.${system};
archive_fmt = if system == "x86_64-darwin" then "zip" else "tar.gz";
2016-04-03 15:07:05 +00:00
in
stdenv.mkDerivation rec {
name = "vscode-${version}";
2019-04-11 22:10:42 +00:00
version = "1.33.1";
2016-04-03 15:07:05 +00:00
src = fetchurl {
name = "VSCode_${version}_${plat}.${archive_fmt}";
url = "https://vscode-update.azurewebsites.net/${version}/${plat}/stable";
inherit sha256;
2016-04-03 15:07:05 +00:00
};
passthru = {
inherit executableName;
};
2016-04-22 10:27:38 +00:00
desktopItem = makeDesktopItem {
name = executableName;
desktopName = longName;
comment = "Code Editing. Redefined.";
genericName = "Text Editor";
exec = executableName;
icon = "@out@/share/pixmaps/code.png";
startupNotify = "true";
categories = "Utility;TextEditor;Development;IDE;";
mimeType = "text/plain;inode/directory;";
extraEntries = ''
StartupWMClass=${shortName}
Actions=new-empty-window;
Keywords=vscode;
[Desktop Action new-empty-window]
Name=New Empty Window
Exec=${executableName} --new-window %F
Icon=@out@/share/pixmaps/code.png
'';
};
urlHandlerDesktopItem = makeDesktopItem {
name = executableName + "-url-handler";
desktopName = longName + " - URL Handler";
comment = "Code Editing. Redefined.";
2016-04-22 10:27:38 +00:00
genericName = "Text Editor";
exec = executableName + " --open-url %U";
icon = "@out@/share/pixmaps/code.png";
startupNotify = "true";
categories = "Utility;TextEditor;Development;IDE;";
mimeType = "x-scheme-handler/vscode;";
extraEntries = ''
NoDisplay=true
Keywords=vscode;
'';
2016-04-22 10:27:38 +00:00
};
2018-12-17 03:09:21 +00:00
buildInputs = (if stdenv.isDarwin
then [ unzip ]
else [ gtk2 at-spi2-atk wrapGAppsHook ] ++ atomEnv.packages)
++ [ libsecret libXScrnSaver ];
nativeBuildInputs = lib.optional (!stdenv.isDarwin) autoPatchelfHook;
2016-04-03 15:07:05 +00:00
dontBuild = true;
dontConfigure = true;
installPhase =
if 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/${executableName} $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/${executableName} --replace '"$CLI" "$@"' '"$CLI" "--skip-getting-started" "$@"'
2017-08-30 11:58:38 +00:00
ln -s $out/lib/vscode/bin/${executableName} $out/bin
2016-04-22 10:27:38 +00:00
mkdir -p $out/share/applications
substitute $desktopItem/share/applications/${executableName}.desktop $out/share/applications/${executableName}.desktop \
--subst-var out
substitute $urlHandlerDesktopItem/share/applications/${executableName}-url-handler.desktop $out/share/applications/${executableName}-url-handler.desktop \
--subst-var out
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
preFixup = lib.optionalString (system == "i686-linux" || system == "x86_64-linux") ''
gappsWrapperArgs+=(--prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath [ systemd fontconfig ]})
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
'';
2019-02-17 13:24:53 +00:00
homepage = https://code.visualstudio.com/;
downloadPage = https://code.visualstudio.com/Updates;
license = licenses.unfree;
2019-02-06 22:17:41 +00:00
maintainers = with maintainers; [ eadwu ];
platforms = [ "i686-linux" "x86_64-linux" "x86_64-darwin" ];
2016-04-03 15:07:05 +00:00
};
}