diff --git a/pkgs/applications/editors/vscode/extensions/default.nix b/pkgs/applications/editors/vscode/extensions/default.nix index fd53a475f4d9..b3b63b458e00 100644 --- a/pkgs/applications/editors/vscode/extensions/default.nix +++ b/pkgs/applications/editors/vscode/extensions/default.nix @@ -3899,21 +3899,7 @@ let }; }; - pkief.material-icon-theme = buildVscodeMarketplaceExtension { - mktplcRef = { - name = "material-icon-theme"; - publisher = "PKief"; - version = "5.23.0"; - hash = "sha256-numOqtLBqPKhlHXpdKtzg423vijR0p0a8f9niR2WrCc="; - }; - meta = { - description = "Material Design Icons for Visual Studio Code"; - downloadPage = "https://marketplace.visualstudio.com/items/?itemName=PKief.material-icon-theme"; - homepage = "https://github.com/material-extensions/vscode-material-icon-theme/blob/main/README.md"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.therobot2105 ]; - }; - }; + pkief.material-icon-theme = callPackage ./pkief.material-icon-theme { }; pkief.material-product-icons = buildVscodeMarketplaceExtension { mktplcRef = { diff --git a/pkgs/applications/editors/vscode/extensions/pkief.material-icon-theme/default.nix b/pkgs/applications/editors/vscode/extensions/pkief.material-icon-theme/default.nix new file mode 100644 index 000000000000..f80e481949c1 --- /dev/null +++ b/pkgs/applications/editors/vscode/extensions/pkief.material-icon-theme/default.nix @@ -0,0 +1,19 @@ +{ + lib, + vscode-utils, +}: +vscode-utils.buildVscodeMarketplaceExtension { + mktplcRef = { + name = "material-icon-theme"; + publisher = "PKief"; + version = "5.24.0"; + hash = "sha256-Skc+ib3gY2cLVepOjbBkpwPuUG9C29bh5BOxQOAZNtc="; + }; + meta = { + description = "Material Design Icons for Visual Studio Code"; + downloadPage = "https://marketplace.visualstudio.com/items/?itemName=PKief.material-icon-theme"; + homepage = "https://github.com/material-extensions/vscode-material-icon-theme/blob/main/README.md"; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.therobot2105 ]; + }; +}