mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-09-19 22:30:23 +00:00
22 lines
702 B
Nix
22 lines
702 B
Nix
{
|
|
lib,
|
|
vscode-utils,
|
|
}:
|
|
|
|
vscode-utils.buildVscodeMarketplaceExtension {
|
|
mktplcRef = {
|
|
publisher = "google";
|
|
name = "colab";
|
|
version = "0.8.1";
|
|
hash = "sha256-QKGE6heSrSCm7X0YSOQy6SQeD50AZPS28UYWSWYdJxs=";
|
|
};
|
|
|
|
meta = {
|
|
description = "A VS Code extension providing access to Google Colab. Colab is a hosted Jupyter Notebook service that requires no setup to use and provides free access to computing resources, including GPUs and TPUs.";
|
|
downloadPage = "https://marketplace.visualstudio.com/items?itemName=Google.colab";
|
|
homepage = "https://github.com/googlecolab/colab-vscode";
|
|
license = lib.licenses.asl20;
|
|
maintainers = [ lib.maintainers.devoid ];
|
|
};
|
|
}
|