summary refs log blame commit diff
path: root/pkgs/misc/vscode-extensions/default.nix
blob: 12900907c00c1cde8990e14da46c80e31724c1e5 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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.
  };
}