2022-03-13 07:16:34 +00:00
|
|
|
{ stdenv
|
2024-09-29 16:56:58 +00:00
|
|
|
, stdenvNoCC
|
2022-03-13 07:16:34 +00:00
|
|
|
, lib
|
|
|
|
, callPackage
|
|
|
|
, fetchurl
|
|
|
|
, nixosTests
|
2023-05-31 15:09:50 +00:00
|
|
|
, srcOnly
|
2022-09-03 15:10:49 +00:00
|
|
|
, isInsiders ? false
|
2023-07-04 19:54:27 +00:00
|
|
|
# sourceExecutableName is the name of the binary in the source archive over
|
|
|
|
# which we have no control and it is needed to run the insider version as
|
2024-04-01 14:26:00 +00:00
|
|
|
# documented in https://wiki.nixos.org/wiki/Visual_Studio_Code#Insiders_Build
|
2023-07-04 19:54:27 +00:00
|
|
|
# On MacOS the insider binary is still called code instead of code-insiders as
|
2023-08-06 02:50:05 +00:00
|
|
|
# of 2023-08-06.
|
2023-07-04 19:54:27 +00:00
|
|
|
, sourceExecutableName ? "code" + lib.optionalString (isInsiders && stdenv.hostPlatform.isLinux) "-insiders"
|
2022-09-03 15:10:49 +00:00
|
|
|
, commandLineArgs ? ""
|
2023-05-29 20:24:02 +00:00
|
|
|
, useVSCodeRipgrep ? stdenv.hostPlatform.isDarwin
|
2022-09-03 15:10:49 +00:00
|
|
|
}:
|
2019-05-21 18:17:01 +00:00
|
|
|
|
|
|
|
let
|
|
|
|
inherit (stdenv.hostPlatform) system;
|
2022-07-26 22:02:37 +00:00
|
|
|
throwSystem = throw "Unsupported system: ${system}";
|
2019-05-21 18:17:01 +00:00
|
|
|
|
|
|
|
plat = {
|
2019-08-13 21:52:01 +00:00
|
|
|
x86_64-linux = "linux-x64";
|
|
|
|
x86_64-darwin = "darwin";
|
2020-12-16 16:40:14 +00:00
|
|
|
aarch64-linux = "linux-arm64";
|
2021-07-11 20:51:17 +00:00
|
|
|
aarch64-darwin = "darwin-arm64";
|
2020-12-16 16:40:14 +00:00
|
|
|
armv7l-linux = "linux-armhf";
|
2022-07-26 22:02:37 +00:00
|
|
|
}.${system} or throwSystem;
|
2019-05-21 18:17:01 +00:00
|
|
|
|
2021-07-11 20:51:17 +00:00
|
|
|
archive_fmt = if stdenv.hostPlatform.isDarwin then "zip" else "tar.gz";
|
2019-05-21 18:17:01 +00:00
|
|
|
|
|
|
|
sha256 = {
|
2024-11-08 00:32:38 +00:00
|
|
|
x86_64-linux = "1d99kbvbd17h02m85gd8dircb39jsbifdk61w1hsvhri6dbfah8f";
|
|
|
|
x86_64-darwin = "1bay90s0asfms4cg4hng9f4bpjyg5d884ffjrqy6mdxwyqmjyzb1";
|
|
|
|
aarch64-linux = "0g1v26qax14fghawjqb9xbkr8kwhzwh52qz30jg3pfsixw5q5kkx";
|
|
|
|
aarch64-darwin = "0m7b6dnfwqal20iq6nwwzvd23l5alqgbc02ih2pjflzk794fj2mf";
|
|
|
|
armv7l-linux = "04jbcqwpbp7d89van8dq5zilfcalxwbx62yzipdzsjlmfnxf65vy";
|
2022-07-26 22:02:37 +00:00
|
|
|
}.${system} or throwSystem;
|
2019-05-21 18:17:01 +00:00
|
|
|
in
|
|
|
|
callPackage ./generic.nix rec {
|
2020-04-01 04:36:58 +00:00
|
|
|
# Please backport all compatible updates to the stable release.
|
|
|
|
# This is important for the extension ecosystem.
|
2024-11-08 00:32:38 +00:00
|
|
|
version = "1.95.2";
|
2023-07-05 13:46:09 +00:00
|
|
|
pname = "vscode" + lib.optionalString isInsiders "-insiders";
|
2019-05-21 18:17:01 +00:00
|
|
|
|
2023-05-31 15:09:50 +00:00
|
|
|
# This is used for VS Code - Remote SSH test
|
2024-11-08 00:32:38 +00:00
|
|
|
rev = "e8653663e8840adaf45af01eab5c627a5af81807";
|
2023-05-31 15:09:50 +00:00
|
|
|
|
2019-05-21 18:17:01 +00:00
|
|
|
executableName = "code" + lib.optionalString isInsiders "-insiders";
|
|
|
|
longName = "Visual Studio Code" + lib.optionalString isInsiders " - Insiders";
|
|
|
|
shortName = "Code" + lib.optionalString isInsiders " - Insiders";
|
2023-07-04 19:54:27 +00:00
|
|
|
inherit commandLineArgs useVSCodeRipgrep sourceExecutableName;
|
2019-05-21 18:17:01 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
name = "VSCode_${version}_${plat}.${archive_fmt}";
|
2021-03-24 14:24:12 +00:00
|
|
|
url = "https://update.code.visualstudio.com/${version}/${plat}/stable";
|
2019-05-21 18:17:01 +00:00
|
|
|
inherit sha256;
|
|
|
|
};
|
|
|
|
|
2023-02-14 08:28:42 +00:00
|
|
|
# We don't test vscode on CI, instead we test vscodium
|
|
|
|
tests = {};
|
|
|
|
|
2019-05-21 18:17:01 +00:00
|
|
|
sourceRoot = "";
|
|
|
|
|
2023-05-31 15:09:50 +00:00
|
|
|
# As tests run without networking, we need to download this for the Remote SSH server
|
|
|
|
vscodeServer = srcOnly {
|
|
|
|
name = "vscode-server-${rev}.tar.gz";
|
|
|
|
src = fetchurl {
|
|
|
|
name = "vscode-server-${rev}.tar.gz";
|
|
|
|
url = "https://update.code.visualstudio.com/commit:${rev}/server-linux-x64/stable";
|
2024-11-08 00:32:38 +00:00
|
|
|
sha256 = "14vfylcx3gcx5vjdp861mjr98wq2f3242ysygpa3r5xnl8941wki";
|
2023-05-31 15:09:50 +00:00
|
|
|
};
|
2024-09-29 16:56:58 +00:00
|
|
|
stdenv = stdenvNoCC;
|
2023-05-31 15:09:50 +00:00
|
|
|
};
|
|
|
|
|
2022-03-13 07:16:34 +00:00
|
|
|
tests = { inherit (nixosTests) vscode-remote-ssh; };
|
|
|
|
|
2021-08-19 10:30:37 +00:00
|
|
|
updateScript = ./update-vscode.sh;
|
2021-05-24 19:46:44 +00:00
|
|
|
|
2022-10-22 17:19:07 +00:00
|
|
|
# Editing the `code` binary within the app bundle causes the bundle's signature
|
|
|
|
# to be invalidated, which prevents launching starting with macOS Ventura, because VS Code is notarized.
|
|
|
|
# See https://eclecticlight.co/2022/06/17/app-security-changes-coming-in-ventura/ for more information.
|
|
|
|
dontFixup = stdenv.hostPlatform.isDarwin;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2019-05-21 18:17:01 +00:00
|
|
|
description = ''
|
|
|
|
Open source source code editor developed by Microsoft for Windows,
|
|
|
|
Linux and macOS
|
|
|
|
'';
|
2021-04-27 14:03:07 +00:00
|
|
|
mainProgram = "code";
|
2019-05-21 18:17:01 +00:00
|
|
|
longDescription = ''
|
|
|
|
Open source source code editor developed by Microsoft for Windows,
|
|
|
|
Linux and macOS. 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
|
|
|
|
'';
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://code.visualstudio.com/";
|
|
|
|
downloadPage = "https://code.visualstudio.com/Updates";
|
2019-05-21 18:17:01 +00:00
|
|
|
license = licenses.unfree;
|
2024-07-09 04:42:46 +00:00
|
|
|
maintainers = with maintainers; [ eadwu synthetica bobby285271 johnrtitor ];
|
2021-07-11 20:51:17 +00:00
|
|
|
platforms = [ "x86_64-linux" "x86_64-darwin" "aarch64-darwin" "aarch64-linux" "armv7l-linux" ];
|
2019-05-21 18:17:01 +00:00
|
|
|
};
|
|
|
|
}
|