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 = {
|
|
|
|
"x86_64-linux" = "linux-x64";
|
|
|
|
"x86_64-darwin" = "darwin";
|
|
|
|
}.${system};
|
|
|
|
|
|
|
|
archive_fmt = if system == "x86_64-darwin" then "zip" else "tar.gz";
|
|
|
|
|
|
|
|
sha256 = {
|
2019-07-10 16:16:39 +03:00
|
|
|
"x86_64-linux" = "1ay4zvkbln2wf2j1d71mn13b6p2fqvzgz45mzrgaqwsszhbg4xzp";
|
|
|
|
"x86_64-darwin" = "17r9krb1qd92ybx078hkw9zlyym6kbnmbl91vjdilsq77bkf9jmw";
|
2019-05-21 21:17:01 +03:00
|
|
|
}.${system};
|
|
|
|
in
|
|
|
|
callPackage ./generic.nix rec {
|
|
|
|
|
2019-07-10 16:16:39 +03:00
|
|
|
version = "1.36.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
|
|
|
};
|
|
|
|
}
|