e7f069c37c
GitOrigin-RevId: 467ce5a9f45aaf96110b41eb863a56866e1c2c3c
8 lines
424 B
Nix
8 lines
424 B
Nix
{ 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";
|
|
}
|