From 2d594255550afad5a41f50598e1d410db20013be Mon Sep 17 00:00:00 2001 From: Oren Rozen Date: Sat, 28 Dec 2019 16:40:13 -0500 Subject: vsode-utils: extracting attributes to limit input range --- pkgs/misc/vscode-extensions/mktplcExtRefToFetchArgs.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'pkgs/misc') diff --git a/pkgs/misc/vscode-extensions/mktplcExtRefToFetchArgs.nix b/pkgs/misc/vscode-extensions/mktplcExtRefToFetchArgs.nix index 21bdd0f6d7b..a781250fc18 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"; } -- cgit 1.4.1