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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

104 lines
4.0 KiB
Nix
Raw Normal View History

{ stdenv
, lib
, callPackage
, fetchurl
, nixosTests
, 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
# 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.isLinux) "-insiders"
2022-09-03 15:10:49 +00:00
, commandLineArgs ? ""
, useVSCodeRipgrep ? stdenv.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";
aarch64-linux = "linux-arm64";
aarch64-darwin = "darwin-arm64";
armv7l-linux = "linux-armhf";
2022-07-26 22:02:37 +00:00
}.${system} or throwSystem;
2019-05-21 18:17:01 +00:00
archive_fmt = if stdenv.isDarwin then "zip" else "tar.gz";
2019-05-21 18:17:01 +00:00
sha256 = {
2024-04-17 00:00:17 +00:00
x86_64-linux = "14m9w7wkg1704apd4d46yi6zwdlbrx2rp3fry9ffk2nn6kkahwk2";
x86_64-darwin = "1cp74wdkva1zib04wxjby0h8r1c56g893kq5ksdj38404i2c5hdk";
aarch64-linux = "00yrdmi4c5m8r11gm7vw18qb5ddcwwg5mdk8s9ykzhmxhdrkcarm";
aarch64-darwin = "1jjhw60jcvj5brayarg8k6avxwaa00mwdn4lrkcdzbzzh1q4knvv";
armv7l-linux = "1jddc3fsv65mp95ybpprx8sz3mpnp6j2ghp4nflky8iawmzz183v";
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-04-17 00:00:17 +00:00
version = "1.88.1";
pname = "vscode" + lib.optionalString isInsiders "-insiders";
2019-05-21 18:17:01 +00:00
# This is used for VS Code - Remote SSH test
2024-04-17 00:00:17 +00:00
rev = "e170252f762678dec6ca2cc69aba1570769a5d39";
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;
};
# We don't test vscode on CI, instead we test vscodium
tests = {};
2019-05-21 18:17:01 +00:00
sourceRoot = "";
# 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-04-17 00:00:17 +00:00
sha256 = "100nhm231gzav24lz84vxwxnqkn777kfn0fkkjmdcd30kc7g7ig9";
};
};
tests = { inherit (nixosTests) vscode-remote-ssh; };
2021-08-19 10:30:37 +00:00
updateScript = ./update-vscode.sh;
# 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.isDarwin;
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
'';
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
'';
homepage = "https://code.visualstudio.com/";
downloadPage = "https://code.visualstudio.com/Updates";
2019-05-21 18:17:01 +00:00
license = licenses.unfree;
2024-02-11 11:00:03 +00:00
maintainers = with maintainers; [ eadwu synthetica bobby285271 Enzime ];
platforms = [ "x86_64-linux" "x86_64-darwin" "aarch64-darwin" "aarch64-linux" "armv7l-linux" ];
2019-05-21 18:17:01 +00:00
};
}