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";
|
2022-04-28 01:53:24 +00:00
|
|
|
aarch64-darwin = "darwin-arm64";
|
2020-12-16 16:41:27 +00:00
|
|
|
armv7l-linux = "linux-armhf";
|
2019-05-21 18:17:01 +00:00
|
|
|
}.${system};
|
|
|
|
|
2022-04-28 01:53:24 +00:00
|
|
|
archive_fmt = if stdenv.isDarwin then "zip" else "tar.gz";
|
2019-05-21 18:17:01 +00:00
|
|
|
|
|
|
|
sha256 = {
|
2022-05-20 00:22:41 +00:00
|
|
|
x86_64-linux = "1ns4cpkihbrwgh8pvn1kjlnipssinjkxy28szidnz6q71zyvsjyw";
|
|
|
|
x86_64-darwin = "05v0gxal74igc29qjy0ficlyna17bzh1lpfqvyxdpg22is894h2l";
|
|
|
|
aarch64-linux = "1x6lhcvdly3a2n0shp2vlgk3s2pj9byxn9dc9pjg4k5ff24dql7l";
|
|
|
|
aarch64-darwin = "03knkj0y6n45lin0v6288zbq1nz5qh81ijyw1w3zrpd7pijn9j0x";
|
|
|
|
armv7l-linux = "0iwlr5q1qwq3jgldrhz4bbyl3xmdhd4ss690x1lqb4vxm2m7v5jw";
|
2019-05-21 18:17:01 +00:00
|
|
|
}.${system};
|
2019-10-05 18:54:02 +00:00
|
|
|
|
2022-04-28 01:53:24 +00:00
|
|
|
sourceRoot = if stdenv.isDarwin then "" else ".";
|
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-05-20 00:22:41 +00:00
|
|
|
version = "1.67.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 ];
|
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
|
|
|
};
|
|
|
|
}
|