about summary refs log tree commit diff
path: root/pkgs/misc/vscode-extensions/mktplcExtRefToFetchArgs.nix
blob: a781250fc18b21cb61bf4dec7cf194713cd2b889 (plain) (blame)
1
2
3
4
5
6
7
8
{ publisher, name, version, sha256 ? "" }:
{
  url = "https://${publisher}.gallery.vsassets.io/_apis/public/gallery/publisher/${publisher}/extension/${name}/${version}/assetbyname/Microsoft.VisualStudio.Services.VSIXPackage";
  sha256 = sha256;
  # The `*.vsix` file is in the end a simple zip file. Change the extension
  # so that existing `unzip` hooks takes care of the unpacking.
  name = "${publisher}-${name}.zip";
}