2021-02-08 12:54:24 +00:00
|
|
|
{ lib, stdenv, callPackage, fetchurl, nixosTests }:
|
2019-05-21 18:17:01 +00:00
|
|
|
|
|
|
|
let
|
|
|
|
inherit (stdenv.hostPlatform) system;
|
|
|
|
|
|
|
|
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";
|
|
|
|
armv7l-linux = "linux-armhf";
|
2019-05-21 18:17:01 +00:00
|
|
|
}.${system};
|
|
|
|
|
|
|
|
archive_fmt = if system == "x86_64-darwin" then "zip" else "tar.gz";
|
|
|
|
|
|
|
|
sha256 = {
|
2022-03-11 12:10:34 +00:00
|
|
|
x86_64-linux = "1sh2f7hwhilwmlgy11kl0s2n3phpcir15wyl2fkyhsr2kdj4jz9r";
|
|
|
|
x86_64-darwin = "1s04d91f08982wi8hb4dw0j57d6zqrdgns16ihrgsvahrzksgq4b";
|
|
|
|
aarch64-linux = "1a97lk1qz2lz0lk5lpja32zy07iwdbskp6baf429iz7fz232rshm";
|
|
|
|
armv7l-linux = "0vjqxqcr7fq3ncx1nl6ny7qcqm4vlsn33c074hhcg5292blg2a0p";
|
2019-05-21 18:17:01 +00:00
|
|
|
}.${system};
|
2019-10-05 18:54:02 +00:00
|
|
|
|
|
|
|
sourceRoot = {
|
|
|
|
x86_64-linux = ".";
|
|
|
|
x86_64-darwin = "";
|
2020-12-16 16:41:27 +00:00
|
|
|
aarch64-linux = ".";
|
|
|
|
armv7l-linux = ".";
|
2019-10-05 18:54:02 +00:00
|
|
|
}.${system};
|
2019-05-21 18:17:01 +00:00
|
|
|
in
|
|
|
|
callPackage ./generic.nix rec {
|
2019-10-05 18:54:02 +00:00
|
|
|
inherit sourceRoot;
|
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.
|
2022-03-11 12:10:34 +00:00
|
|
|
version = "1.65.2";
|
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;
|
2021-11-19 13:01:28 +00:00
|
|
|
maintainers = with maintainers; [ synthetica turion bobby285271 ];
|
2020-12-16 16:41:27 +00:00
|
|
|
platforms = [ "x86_64-linux" "x86_64-darwin" "aarch64-linux" "armv7l-linux" ];
|
2019-05-21 18:17:01 +00:00
|
|
|
};
|
|
|
|
}
|