2019-06-16 22:59:06 +03:00
|
|
|
{ stdenv, callPackage, fetchurl }:
|
2019-05-21 21:17:01 +03:00
|
|
|
|
|
|
|
let
|
|
|
|
inherit (stdenv.hostPlatform) system;
|
|
|
|
|
|
|
|
plat = {
|
2019-08-14 00:52:01 +03:00
|
|
|
x86_64-linux = "linux-x64";
|
|
|
|
x86_64-darwin = "darwin";
|
2019-05-21 21:17:01 +03:00
|
|
|
}.${system};
|
|
|
|
|
|
|
|
archive_fmt = if system == "x86_64-darwin" then "zip" else "tar.gz";
|
|
|
|
|
|
|
|
sha256 = {
|
2019-09-13 15:02:16 +03:00
|
|
|
x86_64-linux = "15m7mfb8gmx3pwydc37blj0rxwgmkrnqfj6y79rpqlr2dg92gwlb";
|
|
|
|
x86_64-darwin = "080k4fnfa5ylmmya6zprgci3gld9mrbqsfnk53hgcny91ykl5xj5";
|
2019-05-21 21:17:01 +03:00
|
|
|
}.${system};
|
|
|
|
in
|
|
|
|
callPackage ./generic.nix rec {
|
|
|
|
|
2019-09-13 15:02:16 +03:00
|
|
|
version = "1.38.1";
|
2019-05-21 21:17:01 +03:00
|
|
|
pname = "vscodium";
|
|
|
|
|
2019-06-14 05:01:13 +03:00
|
|
|
executableName = "codium";
|
2019-05-21 21:17:01 +03:00
|
|
|
longName = "VSCodium";
|
|
|
|
shortName = "Codium";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/VSCodium/vscodium/releases/download/${version}/VSCodium-${plat}-${version}.${archive_fmt}";
|
|
|
|
inherit sha256;
|
|
|
|
};
|
|
|
|
|
|
|
|
sourceRoot = ".";
|
|
|
|
|
|
|
|
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
|
|
|
|
'';
|
|
|
|
homepage = https://github.com/VSCodium/vscodium;
|
|
|
|
downloadPage = https://github.com/VSCodium/vscodium/releases;
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [];
|
2019-07-04 19:39:48 +03:00
|
|
|
platforms = [ "x86_64-linux" "x86_64-darwin" ];
|
2019-05-21 21:17:01 +03:00
|
|
|
};
|
|
|
|
}
|