2023-07-15 17:15:38 +00:00
|
|
|
{ lib, stdenv, callPackage, fetchurl, nixosTests, commandLineArgs ? "", useVSCodeRipgrep ? stdenv.isDarwin }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
let
|
|
|
|
inherit (stdenv.hostPlatform) system;
|
2022-08-12 12:06:08 +00:00
|
|
|
throwSystem = throw "Unsupported system: ${system}";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
plat = {
|
|
|
|
x86_64-linux = "linux-x64";
|
2021-01-05 17:05:55 +00:00
|
|
|
x86_64-darwin = "darwin-x64";
|
2020-12-29 15:07:52 +00:00
|
|
|
aarch64-linux = "linux-arm64";
|
2022-04-27 09:35:20 +00:00
|
|
|
aarch64-darwin = "darwin-arm64";
|
2020-12-29 15:07:52 +00:00
|
|
|
armv7l-linux = "linux-armhf";
|
2022-08-12 12:06:08 +00:00
|
|
|
}.${system} or throwSystem;
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2022-04-27 09:35:20 +00:00
|
|
|
archive_fmt = if stdenv.isDarwin then "zip" else "tar.gz";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
sha256 = {
|
2023-10-19 13:55:26 +00:00
|
|
|
x86_64-linux = "0cqkxd4pywkrvg3b96f1dyain6vlrb3di8a0yskmq3h58qd6k8rc";
|
|
|
|
x86_64-darwin = "09y3whpp2z8fgb42pb9lw0b4wn0np3rdjkn5l1kldjljfrcwcn9g";
|
|
|
|
aarch64-linux = "1kh8qylj77km8jhmx9a2bck7y4bb0fjx46sll7swagxz27b8ahi0";
|
|
|
|
aarch64-darwin = "14g60sx3c5m02ly880sxwhmzvpxqw4pfij2ibgyprzdlpap0r2b0";
|
|
|
|
armv7l-linux = "1s4rpd5p4kwmi89cml1106l9dccdwnqq3lyr8ym781pj9p75i8wp";
|
2022-08-12 12:06:08 +00:00
|
|
|
}.${system} or throwSystem;
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2023-08-04 22:07:22 +00:00
|
|
|
sourceRoot = lib.optionalString (!stdenv.isDarwin) ".";
|
2020-04-24 23:36:52 +00:00
|
|
|
in
|
|
|
|
callPackage ./generic.nix rec {
|
2023-05-24 13:37:59 +00:00
|
|
|
inherit sourceRoot commandLineArgs useVSCodeRipgrep;
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
# Please backport all compatible updates to the stable release.
|
|
|
|
# This is important for the extension ecosystem.
|
2023-10-19 13:55:26 +00:00
|
|
|
version = "1.83.1.23285";
|
2020-04-24 23:36:52 +00:00
|
|
|
pname = "vscodium";
|
|
|
|
|
|
|
|
executableName = "codium";
|
|
|
|
longName = "VSCodium";
|
2020-05-15 21:57:56 +00:00
|
|
|
shortName = "vscodium";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/VSCodium/vscodium/releases/download/${version}/VSCodium-${plat}-${version}.${archive_fmt}";
|
|
|
|
inherit sha256;
|
|
|
|
};
|
|
|
|
|
2021-02-13 14:23:35 +00:00
|
|
|
tests = nixosTests.vscodium;
|
|
|
|
|
2021-05-28 09:39:13 +00:00
|
|
|
updateScript = ./update-vscodium.sh;
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = ''
|
|
|
|
Open source source code editor developed by Microsoft for Windows,
|
|
|
|
Linux and macOS (VS Code without MS branding/telemetry/licensing)
|
|
|
|
'';
|
|
|
|
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://github.com/VSCodium/vscodium";
|
|
|
|
downloadPage = "https://github.com/VSCodium/vscodium/releases";
|
|
|
|
license = licenses.mit;
|
2022-06-16 17:23:12 +00:00
|
|
|
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
|
2023-10-09 19:29:22 +00:00
|
|
|
maintainers = with maintainers; [ synthetica bobby285271 ludovicopiero ];
|
2022-05-18 14:49:53 +00:00
|
|
|
mainProgram = "codium";
|
2022-04-27 09:35:20 +00:00
|
|
|
platforms = [ "x86_64-linux" "x86_64-darwin" "aarch64-linux" "aarch64-darwin" "armv7l-linux" ];
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|