summaryrefslogtreecommitdiffstats
path: root/pkgs/misc/vscode-extensions/mktplcExtRefToFetchArgs.nix
diff options
context:
space:
mode:
authorOren Rozen <countoren@gmail.com>2019-12-28 16:40:13 -0500
committerOren Rozen <countoren@gmail.com>2019-12-28 16:40:13 -0500
commit2d594255550afad5a41f50598e1d410db20013be (patch)
tree3d1b5d5be1f5e165f8b42d113be7cb6878606455 /pkgs/misc/vscode-extensions/mktplcExtRefToFetchArgs.nix
parent4b25c6ac5142a38616d622254355db12e1ab0e83 (diff)
vsode-utils: extracting attributes to limit input range
Diffstat (limited to 'pkgs/misc/vscode-extensions/mktplcExtRefToFetchArgs.nix')
-rw-r--r--pkgs/misc/vscode-extensions/mktplcExtRefToFetchArgs.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/misc/vscode-extensions/mktplcExtRefToFetchArgs.nix b/pkgs/misc/vscode-extensions/mktplcExtRefToFetchArgs.nix
index 21bdd0f6d7b1..a781250fc18b 100644
--- a/pkgs/misc/vscode-extensions/mktplcExtRefToFetchArgs.nix
+++ b/pkgs/misc/vscode-extensions/mktplcExtRefToFetchArgs.nix
@@ -1,8 +1,8 @@
-ext:
+{ publisher, name, version, sha256 ? "" }:
{
- url = "https://${ext.publisher}.gallery.vsassets.io/_apis/public/gallery/publisher/${ext.publisher}/extension/${ext.name}/${ext.version}/assetbyname/Microsoft.VisualStudio.Services.VSIXPackage";
- sha256 = ext.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 = "${ext.publisher}-${ext.name}.zip";
+ name = "${publisher}-${name}.zip";
}