2019-06-16 20:59:06 +01:00
|
|
|
{ stdenv, callPackage, fetchurl }:
|
2019-05-21 19:17:01 +01:00
|
|
|
|
|
|
|
let
|
|
|
|
inherit (stdenv.hostPlatform) system;
|
|
|
|
|
|
|
|
plat = {
|
2019-08-13 22:52:01 +01:00
|
|
|
x86_64-linux = "linux-x64";
|
|
|
|
x86_64-darwin = "darwin";
|
2019-05-21 19:17:01 +01:00
|
|
|
}.${system};
|
|
|
|
|
|
|
|
archive_fmt = if system == "x86_64-darwin" then "zip" else "tar.gz";
|
|
|
|
|
|
|
|
sha256 = {
|
2020-10-03 13:07:02 +01:00
|
|
|
x86_64-linux = "19y25yfkls53w4qlmipfvjig7zykgwx1010ny58k339fv181vdyq";
|
|
|
|
x86_64-darwin = "1ak3pfvwdg51hcv2kyqpnhzkl7k23k5qk197sf6rv02kgwan7pxl";
|
2019-05-21 19:17:01 +01:00
|
|
|
}.${system};
|
2019-10-05 19:54:02 +01:00
|
|
|
|
|
|
|
sourceRoot = {
|
|
|
|
x86_64-linux = ".";
|
|
|
|
x86_64-darwin = "";
|
|
|
|
}.${system};
|
2019-05-21 19:17:01 +01:00
|
|
|
in
|
|
|
|
callPackage ./generic.nix rec {
|
2019-10-05 19:54:02 +01:00
|
|
|
inherit sourceRoot;
|
2020-01-06 10:42:04 +00:00
|
|
|
# The update script doesn't correctly change the hash for darwin, so please:
|
|
|
|
# nixpkgs-update: no auto update
|
2019-05-21 19:17:01 +01:00
|
|
|
|
2020-04-01 05:37:10 +01:00
|
|
|
# Please backport all compatible updates to the stable release.
|
|
|
|
# This is important for the extension ecosystem.
|
2020-10-03 13:07:02 +01:00
|
|
|
version = "1.49.3";
|
2019-05-21 19:17:01 +01:00
|
|
|
pname = "vscodium";
|
|
|
|
|
2019-06-14 03:01:13 +01:00
|
|
|
executableName = "codium";
|
2019-05-21 19:17:01 +01:00
|
|
|
longName = "VSCodium";
|
2020-05-14 09:13:25 +01:00
|
|
|
shortName = "vscodium";
|
2019-05-21 19:17:01 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/VSCodium/vscodium/releases/download/${version}/VSCodium-${plat}-${version}.${archive_fmt}";
|
|
|
|
inherit sha256;
|
|
|
|
};
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
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 02:11:51 +01:00
|
|
|
homepage = "https://github.com/VSCodium/vscodium";
|
|
|
|
downloadPage = "https://github.com/VSCodium/vscodium/releases";
|
2019-05-21 19:17:01 +01:00
|
|
|
license = licenses.mit;
|
2020-04-19 11:56:52 +01:00
|
|
|
maintainers = with maintainers; [ synthetica turion ];
|
2019-07-04 17:39:48 +01:00
|
|
|
platforms = [ "x86_64-linux" "x86_64-darwin" ];
|
2019-05-21 19:17:01 +01:00
|
|
|
};
|
|
|
|
}
|