vscode-extensions.nhoizey.gremlins: move them to a different file

inspired by https://github.com/NixOS/nixpkgs/pull/402784#pullrequestreview-2822373244

Signed-off-by: John Titor <50095635+JohnRTitor@users.noreply.github.com>
This commit is contained in:
John Titor 2025-05-23 23:20:24 +05:30
parent 1817ed2e8e
commit e3cbf7ac77
No known key found for this signature in database
GPG key ID: 29B0514F4E3C1CC0
2 changed files with 20 additions and 16 deletions

View file

@ -3752,22 +3752,7 @@ let
};
};
nhoizey.gremlins = buildVscodeMarketplaceExtension {
mktplcRef = {
name = "gremlins";
publisher = "nhoizey";
version = "0.26.0";
hash = "sha256-ML04SccSOrj5qY0HHJ5jiNbWkPElU1+zZNSX2i1K2uk=";
};
meta = {
changelog = "https://marketplace.visualstudio.com/items/nhoizey.gremlins/changelog";
description = "Reveals some characters that can be harmful because they are invisible or looking like legitimate ones";
downloadPage = "https://marketplace.visualstudio.com/items?itemName=nhoizey.gremlins";
homepage = "https://github.com/nhoizey/vscode-gremlins";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.theobori ];
};
};
nhoizey.gremlins = callPackage ./nhoizey.gremlins { };
nimlang.nimlang = callPackage ./nimlang.nimlang { };

View file

@ -0,0 +1,19 @@
{ lib, vscode-utils }:
vscode-utils.buildVscodeMarketplaceExtension {
mktplcRef = {
name = "gremlins";
publisher = "nhoizey";
version = "0.26.0";
hash = "sha256-ML04SccSOrj5qY0HHJ5jiNbWkPElU1+zZNSX2i1K2uk=";
};
meta = {
changelog = "https://marketplace.visualstudio.com/items/nhoizey.gremlins/changelog";
description = "Reveals some characters that can be harmful because they are invisible or looking like legitimate ones";
downloadPage = "https://marketplace.visualstudio.com/items?itemName=nhoizey.gremlins";
homepage = "https://github.com/nhoizey/vscode-gremlins";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.theobori ];
};
}