2023-05-29 20:24:02 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
stdenv,
|
|
|
|
callPackage,
|
|
|
|
fetchurl,
|
|
|
|
nixosTests,
|
|
|
|
commandLineArgs ? "",
|
|
|
|
useVSCodeRipgrep ? stdenv.hostPlatform.isDarwin,
|
|
|
|
}:
|
2019-05-21 18:17:01 +00:00
|
|
|
|
|
|
|
let
|
|
|
|
inherit (stdenv.hostPlatform) system;
|
2022-07-26 22:02:58 +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";
|
2021-01-05 12:20:19 +00:00
|
|
|
x86_64-darwin = "darwin-x64";
|
2020-12-16 16:41:27 +00:00
|
|
|
aarch64-linux = "linux-arm64";
|
2022-04-28 01:53:24 +00:00
|
|
|
aarch64-darwin = "darwin-arm64";
|
2020-12-16 16:41:27 +00:00
|
|
|
armv7l-linux = "linux-armhf";
|
2022-07-26 22:02:58 +00:00
|
|
|
}
|
|
|
|
.${system} or throwSystem;
|
2019-05-21 18:17:01 +00:00
|
|
|
|
2022-04-28 01:53:24 +00:00
|
|
|
archive_fmt = if stdenv.hostPlatform.isDarwin then "zip" else "tar.gz";
|
2019-05-21 18:17:01 +00:00
|
|
|
|
|
|
|
sha256 =
|
|
|
|
{
|
2025-02-05 15:14:29 +00:00
|
|
|
x86_64-linux = "095ilb9b8703lik5ssgs94b7z640pnmwwphnrilwzdj639ldjzf8";
|
|
|
|
x86_64-darwin = "1i08ylzmnfpqmzdm5yx4wx9nq4z2ghcsfvhla3afnw9ah91yf278";
|
|
|
|
aarch64-linux = "0m9yf7ks4y6mw1qz5h1clw0s7vwn8yca830f98v69a3f2axb2x8i";
|
|
|
|
aarch64-darwin = "0lg05v1mzbsrmqjg20chr4rywbrg45j8d7irkzxg4kqbz8z7z9w6";
|
|
|
|
armv7l-linux = "0b8y5qffacxwis3fhif9d4vsi8268gff8daqavj4rzdaahvjxdhj";
|
2022-07-26 22:02:58 +00:00
|
|
|
}
|
|
|
|
.${system} or throwSystem;
|
2019-10-05 18:54:02 +00:00
|
|
|
|
2023-06-24 18:19:19 +00:00
|
|
|
sourceRoot = lib.optionalString (!stdenv.hostPlatform.isDarwin) ".";
|
2019-05-21 18:17:01 +00:00
|
|
|
in
|
|
|
|
callPackage ./generic.nix rec {
|
2021-12-23 22:22:28 +00:00
|
|
|
inherit sourceRoot commandLineArgs useVSCodeRipgrep;
|
2019-05-21 18:17:01 +00:00
|
|
|
|
2020-04-01 04:37:10 +00:00
|
|
|
# Please backport all compatible updates to the stable release.
|
|
|
|
# This is important for the extension ecosystem.
|
2025-02-05 15:14:29 +00:00
|
|
|
version = "1.96.4.25026";
|
2019-05-21 18:17:01 +00:00
|
|
|
pname = "vscodium";
|
|
|
|
|
2019-06-14 02:01:13 +00:00
|
|
|
executableName = "codium";
|
2019-05-21 18:17:01 +00:00
|
|
|
longName = "VSCodium";
|
2020-05-14 08:13:25 +00:00
|
|
|
shortName = "vscodium";
|
2019-05-21 18:17:01 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/VSCodium/vscodium/releases/download/${version}/VSCodium-${plat}-${version}.${archive_fmt}";
|
|
|
|
inherit sha256;
|
|
|
|
};
|
|
|
|
|
2021-02-08 12:54:24 +00:00
|
|
|
tests = nixosTests.vscodium;
|
|
|
|
|
2021-05-24 19:46:44 +00:00
|
|
|
updateScript = ./update-vscodium.sh;
|
|
|
|
|
2025-01-14 04:38:53 +00:00
|
|
|
# Editing the `codium` binary (and shell scripts) within the app bundle causes the bundle's signature
|
|
|
|
# to be invalidated, which prevents launching starting with macOS Ventura, because VSCodium 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 (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
|
|
|
|
'';
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/VSCodium/vscodium";
|
|
|
|
downloadPage = "https://github.com/VSCodium/vscodium/releases";
|
2019-05-21 18:17:01 +00:00
|
|
|
license = licenses.mit;
|
2022-06-01 08:11:03 +00:00
|
|
|
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
|
2023-09-09 16:19:27 +00:00
|
|
|
maintainers = with maintainers; [
|
|
|
|
synthetica
|
|
|
|
bobby285271
|
|
|
|
ludovicopiero
|
|
|
|
];
|
2022-05-05 00:46:39 +00:00
|
|
|
mainProgram = "codium";
|
2022-04-28 01:53:24 +00:00
|
|
|
platforms = [
|
|
|
|
"x86_64-linux"
|
|
|
|
"x86_64-darwin"
|
|
|
|
"aarch64-linux"
|
|
|
|
"aarch64-darwin"
|
|
|
|
"armv7l-linux"
|
|
|
|
];
|
2019-05-21 18:17:01 +00:00
|
|
|
};
|
|
|
|
}
|