From b49d9f84d4b7e7ca3689ee8ca22d0c6338388732 Mon Sep 17 00:00:00 2001 From: Felix Kimmel Date: Sun, 29 Jun 2025 19:42:18 +0200 Subject: [PATCH] vscode-extensions.pkief.material-icon-theme: 5.23.0 -> 5.24.0 and moved to own directory --- .../editors/vscode/extensions/default.nix | 16 +--------------- .../pkief.material-icon-theme/default.nix | 19 +++++++++++++++++++ 2 files changed, 20 insertions(+), 15 deletions(-) create mode 100644 pkgs/applications/editors/vscode/extensions/pkief.material-icon-theme/default.nix 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 ]; + }; +}