From 3728a36dec7b279d8dae59497848af63aada0d81 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabi=C3=A1n=20Montero?= Date: Wed, 15 Jun 2022 23:28:45 -0600 Subject: [PATCH] =?UTF-8?q?a=C3=B1ade=20extensiones=20de=20vscode?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pkgs/vscode.nix | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 pkgs/vscode.nix diff --git a/pkgs/vscode.nix b/pkgs/vscode.nix new file mode 100644 index 0000000..524bd35 --- /dev/null +++ b/pkgs/vscode.nix @@ -0,0 +1,31 @@ +{ lib, vscode-utils }: with vscode-utils; { + rust-lang.rust = buildVscodeMarketplaceExtension { + mktplcRef = { + publisher = "rust-lang"; + name = "rust"; + version = "0.7.8"; + sha256 = "sha256-Y33agSNMVmaVCQdYd5mzwjiK5JTZTtzTkmSGTQrSNg0="; + }; + meta.license = lib.licenses.mit; + }; + + sirtori.indenticator = buildVscodeMarketplaceExtension { + mktplcRef = { + publisher = "sirtori"; + name = "indenticator"; + version = "0.7.0"; + sha256 = "sha256-J5iNO6V5US+GFyNjNNA5u9H2pKPozWKjQWcLAhl+BjY="; + }; + meta.license = lib.licenses.mit; + }; + + laurenttreguier.vscode-simple-icons = buildVscodeMarketplaceExtension { + mktplcRef = { + publisher = "laurenttreguier"; + name = "vscode-simple-icons"; + version = "1.16.0"; + sha256 = "sha256-dFJ3elMHSUyS/hAY0YovL4MxurV9YQmkqFjXgJNDErs="; + }; + meta.license = lib.licenses.cc0; + }; +}