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 = {
|
2024-11-14 13:22:06 +00:00
|
|
|
x86_64-linux = "c3c97f536692f7d658ddd77dc809693d4cb48b720c9ab97d3931bec028633639";
|
|
|
|
x86_64-darwin = "0fa21f9e0562b61e755d458596bb6ed41d55efb3a9376ec07eea02641eaef631";
|
|
|
|
aarch64-linux = "0bf48851a51ee7c506d73b8633bd02c1da986b5973683eadfeac804cd73e5d2a";
|
|
|
|
aarch64-darwin = "b54453610b92c17032d4ecc71717a1a7b3c9643091e91e58c34576e5a6a78b3c";
|
|
|
|
armv7l-linux = "211b93a60bda18f62cee5ec279f6179af9b94d827535cd89f6c1c832a3ae6dfa";
|
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.
|
2024-11-14 13:22:06 +00:00
|
|
|
version = "1.95.2.24313";
|
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;
|
|
|
|
|
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
|
|
|
};
|
|
|
|
}
|