vscode-with-extensions: init at 1.10.2

This commit is contained in:
Raymond Gauthier
2017-08-18 11:24:53 -04:00
parent 59fa868b01
commit 2a9cb9d36d
4 changed files with 198 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
{ stdenv, lib, fetchurl, vscode-utils }:
let
inherit (vscode-utils) buildVscodeExtension buildVscodeMarketplaceExtension;
in
rec {
nix = buildVscodeMarketplaceExtension {
mktplcRef = {
name = "nix";
publisher = "bbenoist";
version = "1.0.1";
sha256 = "0zd0n9f5z1f0ckzfjr38xw2zzmcxg1gjrava7yahg5cvdcw6l35b";
};
# TODO: Fill meta with appropriate information.
};
}