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-08-04 22:07:22 +00:00
|
|
|
x86_64-linux = "0dynpi8l2102z8kbzgdm8qwbpzm7jxjqvz8a3x0vsikxbfwhsdmy";
|
|
|
|
x86_64-darwin = "1z3vzwgcjj57xrw8mklhsdr8n9214rb4vj6jfnqv5nxpdgx4dw55";
|
|
|
|
aarch64-linux = "0jiwp6i9q8c87pfkhvj45viqi2m5x5aq94skrvxa8wjbkyafvm1d";
|
|
|
|
aarch64-darwin = "1as6zfrv2jymxspmc3m453vs61b7y1lh5qh34xr0ps8c4h6dbjas";
|
|
|
|
armv7l-linux = "17yd3bb4z99q4r0d91grifrbr50wln1fkz0bjp4s4snqnj9q9gfk";
|
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-08-04 22:07:22 +00:00
|
|
|
version = "1.80.2.23209";
|
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 ];
|
2021-12-06 16:07:01 +00:00
|
|
|
maintainers = with maintainers; [ synthetica turion bobby285271 ];
|
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
|
|
|
};
|
|
|
|
}
|