blob: c8e6d5859cfa73bffe9bea5c3e58032a31f8dd4d (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
{ lib, vscode-utils }:
vscode-utils.buildVscodeMarketplaceExtension {
mktplcRef = {
name = "code-spell-checker-german";
publisher = "streetsidesoftware";
version = "2.3.3";
hash = "sha256-sEdr8SQDFWgCq77flvbReILgWtT/ao8cJjrgC7RKO80=";
};
meta = {
changelog = "https://marketplace.visualstudio.com/items/streetsidesoftware.code-spell-checker-german/changelog";
description = "German dictionary extension for VS Code.";
downloadPage = "https://marketplace.visualstudio.com/items?itemName=streetsidesoftware.code-spell-checker-german";
homepage = "https://streetsidesoftware.github.io/vscode-spell-checker-german";
license = lib.licenses.gpl3Only;
maintainers = [ lib.maintainers.koschi13 ];
};
}
|