We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c632cc commit 9f80368Copy full SHA for 9f80368
flake.nix
@@ -181,18 +181,19 @@
181
{
182
inherit name;
183
value = mkExtension extensionConfig;
184
+ inherit (extensionConfig.mktplcRef) publisher;
185
}
186
)
187
188
# group by publisher
- (builtins.groupBy ({ value, ... }: value.vscodeExtPublisher))
189
+ (builtins.groupBy ({ publisher, ... }: publisher))
190
# platform-specific extensions will overwrite universal extensions
191
# due to the sorting order of platforms in the Haskell script
192
(builtins.mapAttrs (
193
_:
194
builtins.foldl' (
195
k:
- { name, value }:
196
+ { name, value, ... }:
197
k
198
// {
199
${name} =
0 commit comments