mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-12 04:35:41 +03:00
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:
parent
1817ed2e8e
commit
e3cbf7ac77
2 changed files with 20 additions and 16 deletions
|
@ -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 { };
|
||||
|
||||
|
|
|
@ -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 ];
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue