coc-{explorer,git,sh,spell-checker}: migrate from nodePackages (#447826)

authored by pyrox.dev and committed by GitHub fe56881d b7c36b80

+679 -1058
+26
pkgs/applications/editors/vim/plugins/cocPlugins.nix
··· 5 coc-css, 6 coc-diagnostic, 7 coc-docker, 8 coc-pyright, 9 coc-toml, 10 }: 11 final: prev: { ··· 34 src = "${coc-docker}/lib/node_modules/coc-docker"; 35 }; 36 37 coc-pyright = buildVimPlugin { 38 pname = "coc-pyright"; 39 inherit (coc-pyright) version meta; 40 src = "${coc-pyright}/lib/node_modules/coc-pyright"; 41 }; 42 43 coc-toml = buildVimPlugin {
··· 5 coc-css, 6 coc-diagnostic, 7 coc-docker, 8 + coc-explorer, 9 + coc-git, 10 coc-pyright, 11 + coc-sh, 12 + coc-spell-checker, 13 coc-toml, 14 }: 15 final: prev: { ··· 38 src = "${coc-docker}/lib/node_modules/coc-docker"; 39 }; 40 41 + coc-explorer = buildVimPlugin { 42 + inherit (coc-explorer) pname version meta; 43 + src = "${coc-explorer}/lib/node_modules/coc-explorer"; 44 + }; 45 + 46 + coc-git = buildVimPlugin { 47 + inherit (coc-git) pname version meta; 48 + src = "${coc-git}/lib/node_modules/coc-git"; 49 + }; 50 + 51 coc-pyright = buildVimPlugin { 52 pname = "coc-pyright"; 53 inherit (coc-pyright) version meta; 54 src = "${coc-pyright}/lib/node_modules/coc-pyright"; 55 + }; 56 + 57 + coc-sh = buildVimPlugin { 58 + pname = "coc-sh"; 59 + inherit (coc-sh) version meta; 60 + src = "${coc-sh}/lib/node_modules/coc-sh"; 61 + }; 62 + 63 + coc-spell-checker = buildVimPlugin { 64 + pname = "coc-spell-checker"; 65 + inherit (coc-spell-checker) version meta; 66 + src = "${coc-spell-checker}/lib/node_modules/coc-spell-checker"; 67 }; 68 69 coc-toml = buildVimPlugin {
-4
pkgs/applications/editors/vim/plugins/nodePackagePlugins.nix
··· 9 "coc-cmake" 10 "coc-emmet" 11 "coc-eslint" 12 - "coc-explorer" 13 "coc-flutter" 14 - "coc-git" 15 "coc-go" 16 "coc-haxe" 17 "coc-highlight" ··· 26 "coc-prettier" 27 "coc-r-lsp" 28 "coc-rust-analyzer" 29 - "coc-sh" 30 "coc-smartf" 31 "coc-snippets" 32 "coc-solargraph" 33 - "coc-spell-checker" 34 "coc-sqlfluff" 35 "coc-stylelint" 36 "coc-sumneko-lua"
··· 9 "coc-cmake" 10 "coc-emmet" 11 "coc-eslint" 12 "coc-flutter" 13 "coc-go" 14 "coc-haxe" 15 "coc-highlight" ··· 24 "coc-prettier" 25 "coc-r-lsp" 26 "coc-rust-analyzer" 27 "coc-smartf" 28 "coc-snippets" 29 "coc-solargraph" 30 "coc-sqlfluff" 31 "coc-stylelint" 32 "coc-sumneko-lua"
+45
pkgs/by-name/co/coc-explorer/package.nix
···
··· 1 + { 2 + lib, 3 + stdenvNoCC, 4 + fetchFromGitHub, 5 + fetchYarnDeps, 6 + yarnConfigHook, 7 + yarnBuildHook, 8 + yarnInstallHook, 9 + nodejs, 10 + nix-update-script, 11 + }: 12 + stdenvNoCC.mkDerivation (finalAttrs: { 13 + pname = "coc-explorer"; 14 + version = "0.27.3"; 15 + 16 + src = fetchFromGitHub { 17 + owner = "weirongxu"; 18 + repo = "coc-explorer"; 19 + tag = "v${finalAttrs.version}"; 20 + hash = "sha256-lIJloatVEKPM36GE/xpVk+cx8Jz89BWU8qsNjc1eoFw="; 21 + }; 22 + 23 + yarnOfflineCache = fetchYarnDeps { 24 + yarnLock = "${finalAttrs.src}/yarn.lock"; 25 + hash = "sha256-w2La2GTJfHjn6qaVQaHsQp8V2KNx2hqDVuBJUYk6WKg="; 26 + }; 27 + 28 + nativeBuildInputs = [ 29 + yarnConfigHook 30 + yarnBuildHook 31 + yarnInstallHook 32 + nodejs 33 + ]; 34 + 35 + yarnBuildScript = "build:pack"; 36 + 37 + passthru.updateScript = nix-update-script { }; 38 + 39 + meta = { 40 + description = "Explorer for coc.nvim"; 41 + homepage = "https://github.com/weirongxu/coc-explorer"; 42 + license = lib.licenses.mit; 43 + maintainers = with lib.maintainers; [ pyrox0 ]; 44 + }; 45 + })
+148
pkgs/by-name/co/coc-git/fix-package-lock.patch
···
··· 1 + diff --git i/package-lock.json w/package-lock.json 2 + index 066c4d9..950dff5 100644 3 + --- i/package-lock.json 4 + +++ w/package-lock.json 5 + @@ -1,12 +1,12 @@ 6 + { 7 + "name": "coc-git", 8 + - "version": "2.7.2", 9 + + "version": "2.7.7", 10 + "lockfileVersion": 3, 11 + "requires": true, 12 + "packages": { 13 + "": { 14 + "name": "coc-git", 15 + - "version": "2.7.2", 16 + + "version": "2.7.7", 17 + "license": "MIT", 18 + "devDependencies": { 19 + "@chemzqm/tsconfig": "^0.0.3", 20 + @@ -32,6 +32,8 @@ 21 + }, 22 + "node_modules/@chemzqm/tsconfig": { 23 + "version": "0.0.3", 24 + + "resolved": "https://registry.npmjs.org/@chemzqm/tsconfig/-/tsconfig-0.0.3.tgz", 25 + + "integrity": "sha512-MjF25vbqLYR+S+JJLgBi0vn4gZqv/C87H+yPSlVKEqlIJAJOGJOgFPUFvRS7pdRHqkv2flX/oRxzxhlu2V0X1w==", 26 + "dev": true, 27 + "license": "MIT" 28 + }, 29 + @@ -462,6 +464,8 @@ 30 + }, 31 + "node_modules/@types/colors": { 32 + "version": "1.2.1", 33 + + "resolved": "https://registry.npmjs.org/@types/colors/-/colors-1.2.1.tgz", 34 + + "integrity": "sha512-7jNkpfN2lVO07nJ1RWzyMnNhH/I5N9iWuMPx9pedptxJ4MODf8rRV0lbJi6RakQ4sKQk231Fw4e2W9n3D7gZ3w==", 35 + "dev": true, 36 + "license": "MIT", 37 + "dependencies": { 38 + @@ -470,6 +474,8 @@ 39 + }, 40 + "node_modules/@types/colors/node_modules/colors": { 41 + "version": "1.3.3", 42 + + "resolved": "https://registry.npmjs.org/colors/-/colors-1.3.3.tgz", 43 + + "integrity": "sha512-mmGt/1pZqYRjMxB1axhTo16/snVZ5krrKkcmMeVKxzECMMXoCgnvTPp10QgHfcbQZw8Dq2jMNG6je4JlWU0gWg==", 44 + "dev": true, 45 + "license": "MIT", 46 + "engines": { 47 + @@ -478,6 +484,8 @@ 48 + }, 49 + "node_modules/@types/debounce": { 50 + "version": "1.2.0", 51 + + "resolved": "https://registry.npmjs.org/@types/debounce/-/debounce-1.2.0.tgz", 52 + + "integrity": "sha512-bWG5wapaWgbss9E238T0R6bfo5Fh3OkeoSt245CM7JJwVwpw6MEBCbIxLq5z8KzsE3uJhzcIuQkyiZmzV3M/Dw==", 53 + "dev": true, 54 + "license": "MIT" 55 + }, 56 + @@ -490,11 +498,15 @@ 57 + }, 58 + "node_modules/@types/uuid": { 59 + "version": "7.0.4", 60 + + "resolved": "https://registry.npmjs.org/@types/uuid/-/uuid-7.0.4.tgz", 61 + + "integrity": "sha512-WGZCqBZZ0mXN2RxvLHL6/7RCu+OWs28jgQMP04LWfpyJlQUMTR6YU9CNJAKDgbw+EV/u687INXuLUc7FuML/4g==", 62 + "dev": true, 63 + "license": "MIT" 64 + }, 65 + "node_modules/@types/which": { 66 + "version": "1.3.2", 67 + + "resolved": "https://registry.npmjs.org/@types/which/-/which-1.3.2.tgz", 68 + + "integrity": "sha512-8oDqyLC7eD4HM307boe2QWKyuzdzWBj56xI/imSl2cpL+U3tCMaTAkMJ4ee5JBZ/FsOJlvRGeIShiZDAl1qERA==", 69 + "dev": true, 70 + "license": "MIT" 71 + }, 72 + @@ -517,6 +529,8 @@ 73 + }, 74 + "node_modules/colors": { 75 + "version": "1.4.0", 76 + + "resolved": "https://registry.npmjs.org/colors/-/colors-1.4.0.tgz", 77 + + "integrity": "sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==", 78 + "dev": true, 79 + "license": "MIT", 80 + "engines": { 81 + @@ -525,6 +539,8 @@ 82 + }, 83 + "node_modules/debounce": { 84 + "version": "1.2.0", 85 + + "resolved": "https://registry.npmjs.org/debounce/-/debounce-1.2.0.tgz", 86 + + "integrity": "sha512-mYtLl1xfZLi1m4RtQYlZgJUNQjl4ZxVnHzIR8nLLgi4q1YT8o/WM+MK/f8yfcc9s5Ir5zRaPZyZU6xs1Syoocg==", 87 + "dev": true, 88 + "license": "MIT" 89 + }, 90 + @@ -571,6 +587,8 @@ 91 + }, 92 + "node_modules/iconv-lite": { 93 + "version": "0.6.2", 94 + + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.2.tgz", 95 + + "integrity": "sha512-2y91h5OpQlolefMPmUlivelittSWy0rP+oYVpn6A7GwVHNE8AWzoYOBNmlwks3LobaJxgHCYZAnyNo2GgpNRNQ==", 96 + "dev": true, 97 + "license": "MIT", 98 + "dependencies": { 99 + @@ -582,11 +600,15 @@ 100 + }, 101 + "node_modules/isexe": { 102 + "version": "2.0.0", 103 + + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", 104 + + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", 105 + "dev": true, 106 + "license": "ISC" 107 + }, 108 + "node_modules/safer-buffer": { 109 + "version": "2.1.2", 110 + + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", 111 + + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", 112 + "dev": true, 113 + "license": "MIT" 114 + }, 115 + @@ -605,11 +627,15 @@ 116 + }, 117 + "node_modules/timeago.js": { 118 + "version": "4.0.2", 119 + + "resolved": "https://registry.npmjs.org/timeago.js/-/timeago.js-4.0.2.tgz", 120 + + "integrity": "sha512-a7wPxPdVlQL7lqvitHGGRsofhdwtkoSXPGATFuSOA2i1ZNQEPLrGnj68vOp2sOJTCFAQVXPeNMX/GctBaO9L2w==", 121 + "dev": true, 122 + "license": "MIT" 123 + }, 124 + "node_modules/typescript": { 125 + "version": "4.5.4", 126 + + "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.5.4.tgz", 127 + + "integrity": "sha512-VgYs2A2QIRuGphtzFV7aQJduJ2gyfTljngLzjpfW9FoYZF6xuw1W0vW9ghCKLfcWrCFxK81CSGRAvS1pn4fIUg==", 128 + "dev": true, 129 + "license": "Apache-2.0", 130 + "bin": { 131 + @@ -622,6 +648,8 @@ 132 + }, 133 + "node_modules/uuid": { 134 + "version": "7.0.3", 135 + + "resolved": "https://registry.npmjs.org/uuid/-/uuid-7.0.3.tgz", 136 + + "integrity": "sha512-DPSke0pXhTZgoF/d+WSt2QaKMCFSfx7QegxEWT+JOuHF5aWrKEn0G+ztjuJg/gG8/ItK+rbPCD/yNv8yyih6Cg==", 137 + "dev": true, 138 + "license": "MIT", 139 + "bin": { 140 + @@ -630,6 +658,8 @@ 141 + }, 142 + "node_modules/which": { 143 + "version": "2.0.2", 144 + + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", 145 + + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", 146 + "dev": true, 147 + "license": "ISC", 148 + "dependencies": {
+32
pkgs/by-name/co/coc-git/package.nix
···
··· 1 + { 2 + lib, 3 + buildNpmPackage, 4 + fetchFromGitHub, 5 + }: 6 + 7 + buildNpmPackage (finalAttrs: { 8 + pname = "coc-git"; 9 + version = "2.7.7"; 10 + 11 + src = fetchFromGitHub { 12 + owner = "neoclide"; 13 + repo = "coc-git"; 14 + tag = finalAttrs.version; 15 + hash = "sha256-5AN5G9u4ZGDrP1dfQal9KpOyMZrVqXnxDslnuMwJ9SU="; 16 + }; 17 + 18 + patches = [ 19 + ./fix-package-lock.patch 20 + ]; 21 + 22 + npmDepsHash = "sha256-vkAATI0vs1oeMr0/iQ8YDt3r+aJo6ND/x4mY/TlRwpg="; 23 + 24 + npmBuildScript = "prepare"; 25 + 26 + meta = { 27 + description = "Git integration of coc.nvim"; 28 + homepage = "https://github.com/neoclide/coc-git"; 29 + license = lib.licenses.mit; 30 + maintainers = with lib.maintainers; [ pyrox0 ]; 31 + }; 32 + })
+343
pkgs/by-name/co/coc-sh/fix-package-lock.patch
···
··· 1 + diff --git i/package-lock.json w/package-lock.json 2 + index e71a2d6..26f6d1d 100644 3 + --- i/package-lock.json 4 + +++ w/package-lock.json 5 + @@ -410,6 +410,8 @@ 6 + }, 7 + "node_modules/ansi-regex": { 8 + "version": "5.0.1", 9 + + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 10 + + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 11 + "dev": true, 12 + "license": "MIT", 13 + "engines": { 14 + @@ -418,6 +420,8 @@ 15 + }, 16 + "node_modules/ansi-styles": { 17 + "version": "4.3.0", 18 + + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", 19 + + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", 20 + "dev": true, 21 + "license": "MIT", 22 + "dependencies": { 23 + @@ -447,6 +451,8 @@ 24 + }, 25 + "node_modules/balanced-match": { 26 + "version": "1.0.2", 27 + + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", 28 + + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", 29 + "dev": true, 30 + "license": "MIT" 31 + }, 32 + @@ -473,6 +479,8 @@ 33 + }, 34 + "node_modules/brace-expansion": { 35 + "version": "1.1.11", 36 + + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 37 + + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 38 + "dev": true, 39 + "license": "MIT", 40 + "dependencies": { 41 + @@ -502,6 +510,8 @@ 42 + }, 43 + "node_modules/chalk": { 44 + "version": "4.1.2", 45 + + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 46 + + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 47 + "dev": true, 48 + "license": "MIT", 49 + "dependencies": { 50 + @@ -534,6 +544,8 @@ 51 + }, 52 + "node_modules/color-convert": { 53 + "version": "2.0.1", 54 + + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", 55 + + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", 56 + "dev": true, 57 + "license": "MIT", 58 + "dependencies": { 59 + @@ -545,16 +557,22 @@ 60 + }, 61 + "node_modules/color-name": { 62 + "version": "1.1.4", 63 + + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", 64 + + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", 65 + "dev": true, 66 + "license": "MIT" 67 + }, 68 + "node_modules/concat-map": { 69 + "version": "0.0.1", 70 + + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", 71 + + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", 72 + "dev": true, 73 + "license": "MIT" 74 + }, 75 + "node_modules/cross-spawn": { 76 + "version": "7.0.3", 77 + + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", 78 + + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", 79 + "dev": true, 80 + "license": "MIT", 81 + "dependencies": { 82 + @@ -603,6 +621,8 @@ 83 + }, 84 + "node_modules/doctrine": { 85 + "version": "3.0.0", 86 + + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", 87 + + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", 88 + "dev": true, 89 + "license": "Apache-2.0", 90 + "dependencies": { 91 + @@ -619,6 +639,8 @@ 92 + }, 93 + "node_modules/escape-string-regexp": { 94 + "version": "4.0.0", 95 + + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", 96 + + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", 97 + "dev": true, 98 + "license": "MIT", 99 + "engines": { 100 + @@ -713,6 +735,8 @@ 101 + }, 102 + "node_modules/eslint/node_modules/glob-parent": { 103 + "version": "6.0.2", 104 + + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", 105 + + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", 106 + "dev": true, 107 + "license": "ISC", 108 + "dependencies": { 109 + @@ -774,6 +798,8 @@ 110 + }, 111 + "node_modules/esutils": { 112 + "version": "2.0.3", 113 + + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", 114 + + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", 115 + "dev": true, 116 + "license": "BSD-2-Clause", 117 + "engines": { 118 + @@ -823,6 +849,8 @@ 119 + }, 120 + "node_modules/file-entry-cache": { 121 + "version": "6.0.1", 122 + + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", 123 + + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", 124 + "dev": true, 125 + "license": "MIT", 126 + "dependencies": { 127 + @@ -861,6 +889,8 @@ 128 + }, 129 + "node_modules/flat-cache": { 130 + "version": "3.0.4", 131 + + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", 132 + + "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", 133 + "dev": true, 134 + "license": "MIT", 135 + "dependencies": { 136 + @@ -888,16 +918,22 @@ 137 + }, 138 + "node_modules/flatted": { 139 + "version": "3.2.4", 140 + + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.4.tgz", 141 + + "integrity": "sha512-8/sOawo8tJ4QOBX8YlQBMxL8+RLZfxMQOif9o0KUKTNTjMYElWPE0r/m5VNFxTRd0NSw8qSy8dajrwX4RYI1Hw==", 142 + "dev": true, 143 + "license": "ISC" 144 + }, 145 + "node_modules/fs.realpath": { 146 + "version": "1.0.0", 147 + + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", 148 + + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", 149 + "dev": true, 150 + "license": "ISC" 151 + }, 152 + "node_modules/fuzzy-search": { 153 + "version": "3.2.1", 154 + + "resolved": "https://registry.npmjs.org/fuzzy-search/-/fuzzy-search-3.2.1.tgz", 155 + + "integrity": "sha512-vAcPiyomt1ioKAsAL2uxSABHJ4Ju/e4UeDM+g1OlR0vV4YhLGMNsdLNvZTpEDY4JCSt0E4hASCNM5t2ETtsbyg==", 156 + "license": "ISC" 157 + }, 158 + "node_modules/glob": { 159 + @@ -922,6 +958,8 @@ 160 + }, 161 + "node_modules/glob-parent": { 162 + "version": "5.1.2", 163 + + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", 164 + + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 165 + "license": "ISC", 166 + "dependencies": { 167 + "is-glob": "^4.0.1" 168 + @@ -973,6 +1011,8 @@ 169 + }, 170 + "node_modules/has-flag": { 171 + "version": "4.0.0", 172 + + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", 173 + + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", 174 + "dev": true, 175 + "license": "MIT", 176 + "engines": { 177 + @@ -1006,6 +1046,8 @@ 178 + }, 179 + "node_modules/imurmurhash": { 180 + "version": "0.1.4", 181 + + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", 182 + + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", 183 + "dev": true, 184 + "license": "MIT", 185 + "engines": { 186 + @@ -1014,6 +1056,8 @@ 187 + }, 188 + "node_modules/inflight": { 189 + "version": "1.0.6", 190 + + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", 191 + + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", 192 + "dev": true, 193 + "license": "ISC", 194 + "dependencies": { 195 + @@ -1023,11 +1067,15 @@ 196 + }, 197 + "node_modules/inherits": { 198 + "version": "2.0.4", 199 + + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", 200 + + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", 201 + "dev": true, 202 + "license": "ISC" 203 + }, 204 + "node_modules/is-extglob": { 205 + "version": "2.1.1", 206 + + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", 207 + + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", 208 + "license": "MIT", 209 + "engines": { 210 + "node": ">=0.10.0" 211 + @@ -1035,6 +1083,8 @@ 212 + }, 213 + "node_modules/is-glob": { 214 + "version": "4.0.3", 215 + + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", 216 + + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", 217 + "license": "MIT", 218 + "dependencies": { 219 + "is-extglob": "^2.1.1" 220 + @@ -1062,6 +1112,8 @@ 221 + }, 222 + "node_modules/isexe": { 223 + "version": "2.0.0", 224 + + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", 225 + + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", 226 + "dev": true, 227 + "license": "ISC" 228 + }, 229 + @@ -1085,6 +1137,8 @@ 230 + }, 231 + "node_modules/json-stable-stringify-without-jsonify": { 232 + "version": "1.0.1", 233 + + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", 234 + + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", 235 + "dev": true, 236 + "license": "MIT" 237 + }, 238 + @@ -1118,6 +1172,8 @@ 239 + }, 240 + "node_modules/lodash.merge": { 241 + "version": "4.6.2", 242 + + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", 243 + + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", 244 + "dev": true, 245 + "license": "MIT" 246 + }, 247 + @@ -1167,11 +1223,15 @@ 248 + }, 249 + "node_modules/ms": { 250 + "version": "2.1.2", 251 + + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", 252 + + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", 253 + "dev": true, 254 + "license": "MIT" 255 + }, 256 + "node_modules/natural-compare": { 257 + "version": "1.4.0", 258 + + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", 259 + + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", 260 + "dev": true, 261 + "license": "MIT" 262 + }, 263 + @@ -1196,6 +1256,8 @@ 264 + }, 265 + "node_modules/once": { 266 + "version": "1.4.0", 267 + + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", 268 + + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", 269 + "dev": true, 270 + "license": "ISC", 271 + "dependencies": { 272 + @@ -1281,6 +1343,8 @@ 273 + }, 274 + "node_modules/path-key": { 275 + "version": "3.1.1", 276 + + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", 277 + + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", 278 + "dev": true, 279 + "license": "MIT", 280 + "engines": { 281 + @@ -1401,6 +1465,8 @@ 282 + }, 283 + "node_modules/shebang-command": { 284 + "version": "2.0.0", 285 + + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", 286 + + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", 287 + "dev": true, 288 + "license": "MIT", 289 + "dependencies": { 290 + @@ -1412,6 +1478,8 @@ 291 + }, 292 + "node_modules/shebang-regex": { 293 + "version": "3.0.0", 294 + + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", 295 + + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", 296 + "dev": true, 297 + "license": "MIT", 298 + "engines": { 299 + @@ -1429,6 +1497,8 @@ 300 + }, 301 + "node_modules/strip-ansi": { 302 + "version": "6.0.1", 303 + + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 304 + + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 305 + "dev": true, 306 + "license": "MIT", 307 + "dependencies": { 308 + @@ -1452,6 +1522,8 @@ 309 + }, 310 + "node_modules/supports-color": { 311 + "version": "7.2.0", 312 + + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", 313 + + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", 314 + "dev": true, 315 + "license": "MIT", 316 + "dependencies": { 317 + @@ -1463,6 +1535,8 @@ 318 + }, 319 + "node_modules/text-table": { 320 + "version": "0.2.0", 321 + + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", 322 + + "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", 323 + "dev": true, 324 + "license": "MIT" 325 + }, 326 + @@ -1618,6 +1692,8 @@ 327 + }, 328 + "node_modules/which": { 329 + "version": "2.0.2", 330 + + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", 331 + + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", 332 + "dev": true, 333 + "license": "ISC", 334 + "dependencies": { 335 + @@ -1632,6 +1708,8 @@ 336 + }, 337 + "node_modules/wrappy": { 338 + "version": "1.0.2", 339 + + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", 340 + + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", 341 + "dev": true, 342 + "license": "ISC" 343 + },
+31
pkgs/by-name/co/coc-sh/package.nix
···
··· 1 + { 2 + lib, 3 + buildNpmPackage, 4 + fetchFromGitHub, 5 + }: 6 + 7 + buildNpmPackage (finalAttrs: { 8 + pname = "coc-sh"; 9 + version = "1.2.4"; 10 + 11 + src = fetchFromGitHub { 12 + owner = "josa42"; 13 + repo = "coc-sh"; 14 + tag = "v${finalAttrs.version}"; 15 + hash = "sha256-Oq9/9/tSt+S8Oai3AgPKUzdccieSD4LudmQAN4ljHwI="; 16 + }; 17 + 18 + patches = [ 19 + # Ensure that all packages have `resolved` and `integrity` fields 20 + ./fix-package-lock.patch 21 + ]; 22 + 23 + npmDepsHash = "sha256-N8bXRtTEKu9yuUnfv4oIokM74KWnqfTLVh5EvS0b1sw="; 24 + 25 + meta = { 26 + description = "bash-language-server for coc.nvim"; 27 + homepage = "https://github.com/josa42/coc-sh"; 28 + license = lib.licenses.mit; 29 + maintainers = with lib.maintainers; [ pyrox0 ]; 30 + }; 31 + })
+46
pkgs/by-name/co/coc-spell-checker/package.nix
···
··· 1 + { 2 + lib, 3 + stdenvNoCC, 4 + fetchFromGitHub, 5 + fetchYarnDeps, 6 + yarnConfigHook, 7 + yarnBuildHook, 8 + yarnInstallHook, 9 + nodejs, 10 + nix-update-script, 11 + }: 12 + stdenvNoCC.mkDerivation (finalAttrs: { 13 + pname = "coc-spell-checker"; 14 + version = "1.3.2-unstable-2022-12-18"; 15 + 16 + src = fetchFromGitHub { 17 + owner = "iamcco"; 18 + repo = "coc-spell-checker"; 19 + # Upstream has no tagged releases 20 + rev = "51c484169de17b5317e54f5cf06bcd3fb04477e7"; 21 + hash = "sha256-WimL7rE+hYW8JoWDnsL3r1zAoEDZBDy6NY2i6Wblm8c="; 22 + }; 23 + 24 + yarnOfflineCache = fetchYarnDeps { 25 + yarnLock = "${finalAttrs.src}/yarn.lock"; 26 + hash = "sha256-nMDcc8dP0L7vpIj6Q1HOJyFCkDZ+19/IdbONxBj1jq8="; 27 + }; 28 + 29 + nativeBuildInputs = [ 30 + yarnConfigHook 31 + yarnBuildHook 32 + yarnInstallHook 33 + nodejs 34 + ]; 35 + 36 + NODE_OPTIONS = "--openssl-legacy-provider"; 37 + 38 + passthru.updateScript = nix-update-script { }; 39 + 40 + meta = { 41 + description = "Basic spell checker that works well with camelCase code for (Neo)vim"; 42 + homepage = "https://github.com/iamcco/coc-spell-checker"; 43 + license = lib.licenses.mit; 44 + maintainers = with lib.maintainers; [ pyrox0 ]; 45 + }; 46 + })
+4
pkgs/development/node-packages/aliases.nix
··· 74 inherit (pkgs) coc-css; # added 2024-06-29 75 inherit (pkgs) coc-diagnostic; # added 2024-06-29 76 inherit (pkgs) coc-docker; # added 2025-10-01 77 coc-imselect = throw "coc-imselect was removed because it was broken"; # added 2023-08-21 78 inherit (pkgs) coc-pyright; # added 2024-07-14 79 coc-metals = throw "coc-metals was removed because it was deprecated upstream. vimPlugins.nvim-metals is its official replacement."; # Added 2024-10-16 80 coc-python = throw "coc-python was removed because it was abandoned upstream on 2020-12-24. Upstream now recommends using coc-pyright or coc-jedi instead."; # added 2024-10-15 81 coc-rls = throw "coc-rls was removed because rls was deprecated in 2022. You should use coc-rust-analyzer instead, as rust-analyzer is maintained."; # added 2025-10-01 82 inherit (pkgs) coc-toml; 83 coc-tslint = throw "coc-tslint was removed because it was deprecated upstream; coc-eslint offers comparable features for eslint, which replaced tslint"; # Added 2024-10-18 84 coc-tslint-plugin = throw "coc-tslint-plugin was removed because it was deprecated upstream; coc-eslint offers comparable features for eslint, which replaced tslint"; # Added 2024-10-18
··· 74 inherit (pkgs) coc-css; # added 2024-06-29 75 inherit (pkgs) coc-diagnostic; # added 2024-06-29 76 inherit (pkgs) coc-docker; # added 2025-10-01 77 + inherit (pkgs) coc-explorer; # added 2025-10-01 78 + inherit (pkgs) coc-git; # added 2025-10-01 79 coc-imselect = throw "coc-imselect was removed because it was broken"; # added 2023-08-21 80 inherit (pkgs) coc-pyright; # added 2024-07-14 81 coc-metals = throw "coc-metals was removed because it was deprecated upstream. vimPlugins.nvim-metals is its official replacement."; # Added 2024-10-16 82 coc-python = throw "coc-python was removed because it was abandoned upstream on 2020-12-24. Upstream now recommends using coc-pyright or coc-jedi instead."; # added 2024-10-15 83 coc-rls = throw "coc-rls was removed because rls was deprecated in 2022. You should use coc-rust-analyzer instead, as rust-analyzer is maintained."; # added 2025-10-01 84 + inherit (pkgs) coc-sh; # added 2025-10-02 85 + inherit (pkgs) coc-spell-checker; # added 2025-10-01 86 inherit (pkgs) coc-toml; 87 coc-tslint = throw "coc-tslint was removed because it was deprecated upstream; coc-eslint offers comparable features for eslint, which replaced tslint"; # Added 2024-10-18 88 coc-tslint-plugin = throw "coc-tslint-plugin was removed because it was deprecated upstream; coc-eslint offers comparable features for eslint, which replaced tslint"; # Added 2024-10-18
-4
pkgs/development/node-packages/node-packages.json
··· 26 , "coc-cmake" 27 , "coc-emmet" 28 , "coc-eslint" 29 - , "coc-explorer" 30 , "coc-flutter" 31 - , "coc-git" 32 , "coc-go" 33 , "coc-haxe" 34 , "coc-highlight" ··· 43 , "coc-prettier" 44 , "coc-r-lsp" 45 , "coc-rust-analyzer" 46 - , "coc-sh" 47 , "coc-smartf" 48 , "coc-snippets" 49 , "coc-solargraph" 50 - , "coc-spell-checker" 51 , "coc-stylelint" 52 , "coc-sumneko-lua" 53 , "coc-sqlfluff"
··· 26 , "coc-cmake" 27 , "coc-emmet" 28 , "coc-eslint" 29 , "coc-flutter" 30 , "coc-go" 31 , "coc-haxe" 32 , "coc-highlight" ··· 41 , "coc-prettier" 42 , "coc-r-lsp" 43 , "coc-rust-analyzer" 44 , "coc-smartf" 45 , "coc-snippets" 46 , "coc-solargraph" 47 , "coc-stylelint" 48 , "coc-sumneko-lua" 49 , "coc-sqlfluff"
+4 -1050
pkgs/development/node-packages/node-packages.nix
··· 2073 sha512 = "gB5C5nDIacLUdsMuW8YsM9SzK3vaFANe4J11CVXpovpy7bZUGrcJKmc6m/0gWG789pKr6XSZY2aEetjFvSRw5g=="; 2074 }; 2075 }; 2076 - "@cspell/dict-aws-1.0.14" = { 2077 - name = "_at_cspell_slash_dict-aws"; 2078 - packageName = "@cspell/dict-aws"; 2079 - version = "1.0.14"; 2080 - src = fetchurl { 2081 - url = "https://registry.npmjs.org/@cspell/dict-aws/-/dict-aws-1.0.14.tgz"; 2082 - sha512 = "K21CfB4ZpKYwwDQiPfic2zJA/uxkbsd4IQGejEvDAhE3z8wBs6g6BwwqdVO767M9NgZqc021yAVpr79N5pWe3w=="; 2083 - }; 2084 - }; 2085 - "@cspell/dict-bash-1.0.18" = { 2086 - name = "_at_cspell_slash_dict-bash"; 2087 - packageName = "@cspell/dict-bash"; 2088 - version = "1.0.18"; 2089 - src = fetchurl { 2090 - url = "https://registry.npmjs.org/@cspell/dict-bash/-/dict-bash-1.0.18.tgz"; 2091 - sha512 = "kJIqQ+FD2TCSgaaP5XLEDgy222+pVWTc+VhveNO++gnTWU3BCVjkD5LjfW7g/CmGONnz+nwXDueWspProaSdJw=="; 2092 - }; 2093 - }; 2094 - "@cspell/dict-companies-1.0.40" = { 2095 - name = "_at_cspell_slash_dict-companies"; 2096 - packageName = "@cspell/dict-companies"; 2097 - version = "1.0.40"; 2098 - src = fetchurl { 2099 - url = "https://registry.npmjs.org/@cspell/dict-companies/-/dict-companies-1.0.40.tgz"; 2100 - sha512 = "Aw07qiTroqSST2P5joSrC4uOA05zTXzI2wMb+me3q4Davv1D9sCkzXY0TGoC2vzhNv5ooemRi9KATGaBSdU1sw=="; 2101 - }; 2102 - }; 2103 - "@cspell/dict-cpp-1.1.40" = { 2104 - name = "_at_cspell_slash_dict-cpp"; 2105 - packageName = "@cspell/dict-cpp"; 2106 - version = "1.1.40"; 2107 - src = fetchurl { 2108 - url = "https://registry.npmjs.org/@cspell/dict-cpp/-/dict-cpp-1.1.40.tgz"; 2109 - sha512 = "sscfB3woNDNj60/yGXAdwNtIRWZ89y35xnIaJVDMk5TPMMpaDvuk0a34iOPIq0g4V+Y8e3RyAg71SH6ADwSjGw=="; 2110 - }; 2111 - }; 2112 - "@cspell/dict-cryptocurrencies-1.0.10" = { 2113 - name = "_at_cspell_slash_dict-cryptocurrencies"; 2114 - packageName = "@cspell/dict-cryptocurrencies"; 2115 - version = "1.0.10"; 2116 - src = fetchurl { 2117 - url = "https://registry.npmjs.org/@cspell/dict-cryptocurrencies/-/dict-cryptocurrencies-1.0.10.tgz"; 2118 - sha512 = "47ABvDJOkaST/rXipNMfNvneHUzASvmL6K/CbOFpYKfsd0x23Jc9k1yaOC7JAm82XSC/8a7+3Yu+Fk2jVJNnsA=="; 2119 - }; 2120 - }; 2121 - "@cspell/dict-csharp-1.0.11" = { 2122 - name = "_at_cspell_slash_dict-csharp"; 2123 - packageName = "@cspell/dict-csharp"; 2124 - version = "1.0.11"; 2125 - src = fetchurl { 2126 - url = "https://registry.npmjs.org/@cspell/dict-csharp/-/dict-csharp-1.0.11.tgz"; 2127 - sha512 = "nub+ZCiTgmT87O+swI+FIAzNwaZPWUGckJU4GN402wBq420V+F4ZFqNV7dVALJrGaWH7LvADRtJxi6cZVHJKeA=="; 2128 - }; 2129 - }; 2130 - "@cspell/dict-css-1.0.13" = { 2131 - name = "_at_cspell_slash_dict-css"; 2132 - packageName = "@cspell/dict-css"; 2133 - version = "1.0.13"; 2134 - src = fetchurl { 2135 - url = "https://registry.npmjs.org/@cspell/dict-css/-/dict-css-1.0.13.tgz"; 2136 - sha512 = "HU8RbFRoGanFH85mT01Ot/Ay48ixr/gG25VPLtdq56QTrmPsw79gxYm/5Qay16eQbpoPIxaj5CAWNam+DX4GbA=="; 2137 - }; 2138 - }; 2139 - "@cspell/dict-django-1.0.26" = { 2140 - name = "_at_cspell_slash_dict-django"; 2141 - packageName = "@cspell/dict-django"; 2142 - version = "1.0.26"; 2143 - src = fetchurl { 2144 - url = "https://registry.npmjs.org/@cspell/dict-django/-/dict-django-1.0.26.tgz"; 2145 - sha512 = "mn9bd7Et1L2zuibc08GVHTiD2Go3/hdjyX5KLukXDklBkq06r+tb0OtKtf1zKodtFDTIaYekGADhNhA6AnKLkg=="; 2146 - }; 2147 - }; 2148 - "@cspell/dict-dotnet-1.0.32" = { 2149 - name = "_at_cspell_slash_dict-dotnet"; 2150 - packageName = "@cspell/dict-dotnet"; 2151 - version = "1.0.32"; 2152 - src = fetchurl { 2153 - url = "https://registry.npmjs.org/@cspell/dict-dotnet/-/dict-dotnet-1.0.32.tgz"; 2154 - sha512 = "9H9vXrgJB4KF8xsyTToXO53cXD33iyfrpT4mhCds+YLUw3P3x3E9myszgJzshnrxYBvQZ+QMII57Qr6SjZVk4Q=="; 2155 - }; 2156 - }; 2157 - "@cspell/dict-elixir-1.0.26" = { 2158 - name = "_at_cspell_slash_dict-elixir"; 2159 - packageName = "@cspell/dict-elixir"; 2160 - version = "1.0.26"; 2161 - src = fetchurl { 2162 - url = "https://registry.npmjs.org/@cspell/dict-elixir/-/dict-elixir-1.0.26.tgz"; 2163 - sha512 = "hz1yETUiRJM7yjN3mITSnxcmZaEyaBbyJhpZPpg+cKUil+xhHeZ2wwfbRc83QHGmlqEuDWbdCFqKSpCDJYpYhg=="; 2164 - }; 2165 - }; 2166 - "@cspell/dict-en-gb-1.1.33" = { 2167 - name = "_at_cspell_slash_dict-en-gb"; 2168 - packageName = "@cspell/dict-en-gb"; 2169 - version = "1.1.33"; 2170 - src = fetchurl { 2171 - url = "https://registry.npmjs.org/@cspell/dict-en-gb/-/dict-en-gb-1.1.33.tgz"; 2172 - sha512 = "tKSSUf9BJEV+GJQAYGw5e+ouhEe2ZXE620S7BLKe3ZmpnjlNG9JqlnaBhkIMxKnNFkLY2BP/EARzw31AZnOv4g=="; 2173 - }; 2174 - }; 2175 - "@cspell/dict-en_us-1.2.45" = { 2176 - name = "_at_cspell_slash_dict-en_us"; 2177 - packageName = "@cspell/dict-en_us"; 2178 - version = "1.2.45"; 2179 - src = fetchurl { 2180 - url = "https://registry.npmjs.org/@cspell/dict-en_us/-/dict-en_us-1.2.45.tgz"; 2181 - sha512 = "UPwR4rfiJCxnS+Py+EK9E4AUj3aPZE4p/yBRSHN+5aBQConlI0lLDtMceH5wlupA/sQTU1ERZGPJA9L96jVSyQ=="; 2182 - }; 2183 - }; 2184 - "@cspell/dict-en_us-4.3.34" = { 2185 - name = "_at_cspell_slash_dict-en_us"; 2186 - packageName = "@cspell/dict-en_us"; 2187 - version = "4.3.34"; 2188 - src = fetchurl { 2189 - url = "https://registry.npmjs.org/@cspell/dict-en_us/-/dict-en_us-4.3.34.tgz"; 2190 - sha512 = "ewJXNV7Nk5vxbGvHvxYLDGoXN0Lq5sfSgX8SAlcYL+2bZ7r25nNOLHou5hdFlNgvviGTx/SFPlVKjdjVJlblgA=="; 2191 - }; 2192 - }; 2193 - "@cspell/dict-filetypes-1.1.8" = { 2194 - name = "_at_cspell_slash_dict-filetypes"; 2195 - packageName = "@cspell/dict-filetypes"; 2196 - version = "1.1.8"; 2197 - src = fetchurl { 2198 - url = "https://registry.npmjs.org/@cspell/dict-filetypes/-/dict-filetypes-1.1.8.tgz"; 2199 - sha512 = "EllahNkhzvLWo0ptwu0l3oEeAJOQSUpZnDfnKRIh6mJVehuSovNHwA9vrdZ8jBUjuqcfaN2e7c32zN0D/qvWJQ=="; 2200 - }; 2201 - }; 2202 - "@cspell/dict-fonts-1.0.14" = { 2203 - name = "_at_cspell_slash_dict-fonts"; 2204 - packageName = "@cspell/dict-fonts"; 2205 - version = "1.0.14"; 2206 - src = fetchurl { 2207 - url = "https://registry.npmjs.org/@cspell/dict-fonts/-/dict-fonts-1.0.14.tgz"; 2208 - sha512 = "VhIX+FVYAnqQrOuoFEtya6+H72J82cIicz9QddgknsTqZQ3dvgp6lmVnsQXPM3EnzA8n1peTGpLDwHzT7ociLA=="; 2209 - }; 2210 - }; 2211 - "@cspell/dict-fullstack-1.0.39" = { 2212 - name = "_at_cspell_slash_dict-fullstack"; 2213 - packageName = "@cspell/dict-fullstack"; 2214 - version = "1.0.39"; 2215 - src = fetchurl { 2216 - url = "https://registry.npmjs.org/@cspell/dict-fullstack/-/dict-fullstack-1.0.39.tgz"; 2217 - sha512 = "Mbi+zWdiP9yzL+X4YD9Tgcm5YQ95Ql+Y3vF2LRnOY6g2QWaijTRN1rgksVuxzpFqHi//+bx2uoUb0XEKBYDi8g=="; 2218 - }; 2219 - }; 2220 - "@cspell/dict-golang-1.1.24" = { 2221 - name = "_at_cspell_slash_dict-golang"; 2222 - packageName = "@cspell/dict-golang"; 2223 - version = "1.1.24"; 2224 - src = fetchurl { 2225 - url = "https://registry.npmjs.org/@cspell/dict-golang/-/dict-golang-1.1.24.tgz"; 2226 - sha512 = "qq3Cjnx2U1jpeWAGJL1GL0ylEhUMqyaR36Xij6Y6Aq4bViCRp+HRRqk0x5/IHHbOrti45h3yy7ii1itRFo+Xkg=="; 2227 - }; 2228 - }; 2229 - "@cspell/dict-haskell-1.0.13" = { 2230 - name = "_at_cspell_slash_dict-haskell"; 2231 - packageName = "@cspell/dict-haskell"; 2232 - version = "1.0.13"; 2233 - src = fetchurl { 2234 - url = "https://registry.npmjs.org/@cspell/dict-haskell/-/dict-haskell-1.0.13.tgz"; 2235 - sha512 = "kvl8T84cnYRPpND/P3D86P6WRSqebsbk0FnMfy27zo15L5MLAb3d3MOiT1kW3vEWfQgzUD7uddX/vUiuroQ8TA=="; 2236 - }; 2237 - }; 2238 - "@cspell/dict-html-1.1.9" = { 2239 - name = "_at_cspell_slash_dict-html"; 2240 - packageName = "@cspell/dict-html"; 2241 - version = "1.1.9"; 2242 - src = fetchurl { 2243 - url = "https://registry.npmjs.org/@cspell/dict-html/-/dict-html-1.1.9.tgz"; 2244 - sha512 = "vvnYia0tyIS5Fdoz+gEQm77MGZZE66kOJjuNpIYyRHCXFAhWdYz3SmkRm6YKJSWSvuO+WBJYTKDvkOxSh3Fx/w=="; 2245 - }; 2246 - }; 2247 - "@cspell/dict-html-symbol-entities-1.0.23" = { 2248 - name = "_at_cspell_slash_dict-html-symbol-entities"; 2249 - packageName = "@cspell/dict-html-symbol-entities"; 2250 - version = "1.0.23"; 2251 - src = fetchurl { 2252 - url = "https://registry.npmjs.org/@cspell/dict-html-symbol-entities/-/dict-html-symbol-entities-1.0.23.tgz"; 2253 - sha512 = "PV0UBgcBFbBLf/m1wfkVMM8w96kvfHoiCGLWO6BR3Q9v70IXoE4ae0+T+f0CkxcEkacMqEQk/I7vuE9MzrjaNw=="; 2254 - }; 2255 - }; 2256 - "@cspell/dict-java-1.0.23" = { 2257 - name = "_at_cspell_slash_dict-java"; 2258 - packageName = "@cspell/dict-java"; 2259 - version = "1.0.23"; 2260 - src = fetchurl { 2261 - url = "https://registry.npmjs.org/@cspell/dict-java/-/dict-java-1.0.23.tgz"; 2262 - sha512 = "LcOg9srYLDoNGd8n3kbfDBlZD+LOC9IVcnFCdua1b/luCHNVmlgBx7e677qPu7olpMYOD5TQIVW2OmM1+/6MFA=="; 2263 - }; 2264 - }; 2265 - "@cspell/dict-latex-1.0.25" = { 2266 - name = "_at_cspell_slash_dict-latex"; 2267 - packageName = "@cspell/dict-latex"; 2268 - version = "1.0.25"; 2269 - src = fetchurl { 2270 - url = "https://registry.npmjs.org/@cspell/dict-latex/-/dict-latex-1.0.25.tgz"; 2271 - sha512 = "cEgg91Migqcp1SdVV7dUeMxbPDhxdNo6Fgq2eygAXQjIOFK520FFvh/qxyBvW90qdZbIRoU2AJpchyHfGuwZFA=="; 2272 - }; 2273 - }; 2274 - "@cspell/dict-lorem-ipsum-1.0.22" = { 2275 - name = "_at_cspell_slash_dict-lorem-ipsum"; 2276 - packageName = "@cspell/dict-lorem-ipsum"; 2277 - version = "1.0.22"; 2278 - src = fetchurl { 2279 - url = "https://registry.npmjs.org/@cspell/dict-lorem-ipsum/-/dict-lorem-ipsum-1.0.22.tgz"; 2280 - sha512 = "yqzspR+2ADeAGUxLTfZ4pXvPl7FmkENMRcGDECmddkOiuEwBCWMZdMP5fng9B0Q6j91hQ8w9CLvJKBz10TqNYg=="; 2281 - }; 2282 - }; 2283 - "@cspell/dict-lua-1.0.16" = { 2284 - name = "_at_cspell_slash_dict-lua"; 2285 - packageName = "@cspell/dict-lua"; 2286 - version = "1.0.16"; 2287 - src = fetchurl { 2288 - url = "https://registry.npmjs.org/@cspell/dict-lua/-/dict-lua-1.0.16.tgz"; 2289 - sha512 = "YiHDt8kmHJ8nSBy0tHzaxiuitYp+oJ66ffCYuFWTNB3//Y0SI4OGHU3omLsQVeXIfCeVrO4DrVvRDoCls9B5zQ=="; 2290 - }; 2291 - }; 2292 - "@cspell/dict-node-1.0.12" = { 2293 - name = "_at_cspell_slash_dict-node"; 2294 - packageName = "@cspell/dict-node"; 2295 - version = "1.0.12"; 2296 - src = fetchurl { 2297 - url = "https://registry.npmjs.org/@cspell/dict-node/-/dict-node-1.0.12.tgz"; 2298 - sha512 = "RPNn/7CSkflAWk0sbSoOkg0ORrgBARUjOW3QjB11KwV1gSu8f5W/ij/S50uIXtlrfoBLqd4OyE04jyON+g/Xfg=="; 2299 - }; 2300 - }; 2301 - "@cspell/dict-npm-1.0.16" = { 2302 - name = "_at_cspell_slash_dict-npm"; 2303 - packageName = "@cspell/dict-npm"; 2304 - version = "1.0.16"; 2305 - src = fetchurl { 2306 - url = "https://registry.npmjs.org/@cspell/dict-npm/-/dict-npm-1.0.16.tgz"; 2307 - sha512 = "RwkuZGcYBxL3Yux3cSG/IOWGlQ1e9HLCpHeyMtTVGYKAIkFAVUnGrz20l16/Q7zUG7IEktBz5O42kAozrEnqMQ=="; 2308 - }; 2309 - }; 2310 - "@cspell/dict-php-1.0.25" = { 2311 - name = "_at_cspell_slash_dict-php"; 2312 - packageName = "@cspell/dict-php"; 2313 - version = "1.0.25"; 2314 - src = fetchurl { 2315 - url = "https://registry.npmjs.org/@cspell/dict-php/-/dict-php-1.0.25.tgz"; 2316 - sha512 = "RoBIP5MRdByyPaXcznZMfOY1JdCMYPPLua5E9gkq0TJO7bX5mC9hyAKfYBSWVQunZydd82HZixjb5MPkDFU1uw=="; 2317 - }; 2318 - }; 2319 - "@cspell/dict-powershell-1.0.19" = { 2320 - name = "_at_cspell_slash_dict-powershell"; 2321 - packageName = "@cspell/dict-powershell"; 2322 - version = "1.0.19"; 2323 - src = fetchurl { 2324 - url = "https://registry.npmjs.org/@cspell/dict-powershell/-/dict-powershell-1.0.19.tgz"; 2325 - sha512 = "zF/raM/lkhXeHf4I43OtK0gP9rBeEJFArscTVwLWOCIvNk21MJcNoTYoaGw+c056+Q+hJL0psGLO7QN+mxYH1A=="; 2326 - }; 2327 - }; 2328 - "@cspell/dict-python-1.0.38" = { 2329 - name = "_at_cspell_slash_dict-python"; 2330 - packageName = "@cspell/dict-python"; 2331 - version = "1.0.38"; 2332 - src = fetchurl { 2333 - url = "https://registry.npmjs.org/@cspell/dict-python/-/dict-python-1.0.38.tgz"; 2334 - sha512 = "KuyOQaby9NID/pn7EkXilpUxjVIvvyLzhr7BPsDS6FcvUE8Yhss6bJowEDHSv6pa+W2387phoqbDf2rTicquAA=="; 2335 - }; 2336 - }; 2337 - "@cspell/dict-ruby-1.0.15" = { 2338 - name = "_at_cspell_slash_dict-ruby"; 2339 - packageName = "@cspell/dict-ruby"; 2340 - version = "1.0.15"; 2341 - src = fetchurl { 2342 - url = "https://registry.npmjs.org/@cspell/dict-ruby/-/dict-ruby-1.0.15.tgz"; 2343 - sha512 = "I76hJA///lc1pgmDTGUFHN/O8KLIZIU/8TgIYIGI6Ix/YzSEvWNdQYbANn6JbCynS0X+7IbZ2Ft+QqvmGtIWuA=="; 2344 - }; 2345 - }; 2346 - "@cspell/dict-rust-1.0.23" = { 2347 - name = "_at_cspell_slash_dict-rust"; 2348 - packageName = "@cspell/dict-rust"; 2349 - version = "1.0.23"; 2350 - src = fetchurl { 2351 - url = "https://registry.npmjs.org/@cspell/dict-rust/-/dict-rust-1.0.23.tgz"; 2352 - sha512 = "lR4boDzs79YD6+30mmiSGAMMdwh7HTBAPUFSB0obR3Kidibfc3GZ+MHWZXay5dxZ4nBKM06vyjtanF9VJ8q1Iw=="; 2353 - }; 2354 - }; 2355 - "@cspell/dict-scala-1.0.21" = { 2356 - name = "_at_cspell_slash_dict-scala"; 2357 - packageName = "@cspell/dict-scala"; 2358 - version = "1.0.21"; 2359 - src = fetchurl { 2360 - url = "https://registry.npmjs.org/@cspell/dict-scala/-/dict-scala-1.0.21.tgz"; 2361 - sha512 = "5V/R7PRbbminTpPS3ywgdAalI9BHzcEjEj9ug4kWYvBIGwSnS7T6QCFCiu+e9LvEGUqQC+NHgLY4zs1NaBj2vA=="; 2362 - }; 2363 - }; 2364 - "@cspell/dict-software-terms-1.0.48" = { 2365 - name = "_at_cspell_slash_dict-software-terms"; 2366 - packageName = "@cspell/dict-software-terms"; 2367 - version = "1.0.48"; 2368 - src = fetchurl { 2369 - url = "https://registry.npmjs.org/@cspell/dict-software-terms/-/dict-software-terms-1.0.48.tgz"; 2370 - sha512 = "pfF3Ys2gRffu5ElqkH7FQMDMi/iZMyOzpGMb3FSH0PJ2AnRQ5rRNWght1h2L36YxvXl0mWVaFrrfwiOyRIc8ZQ=="; 2371 - }; 2372 - }; 2373 - "@cspell/dict-typescript-1.0.20" = { 2374 - name = "_at_cspell_slash_dict-typescript"; 2375 - packageName = "@cspell/dict-typescript"; 2376 - version = "1.0.20"; 2377 - src = fetchurl { 2378 - url = "https://registry.npmjs.org/@cspell/dict-typescript/-/dict-typescript-1.0.20.tgz"; 2379 - sha512 = "yIuGeeZtQA2gqpGefGjZqBl8iGJpIYWz0QzDqsscNi2qfSnLsbjM0RkRbTehM8y9gGGe7xfgUP5adxceJa5Krg=="; 2380 - }; 2381 - }; 2382 "@cspotcode/source-map-support-0.8.1" = { 2383 name = "_at_cspotcode_slash_source-map-support"; 2384 packageName = "@cspotcode/source-map-support"; ··· 3965 sha512 = "2SBN7A/iCVufTmuXdS+W1wY0MZaEyhxlme/NQTlXbTaYWaMGZJMso3YRBNKJJLE1T7NkxsvCVCp7/2QSh8k+JA=="; 3966 }; 3967 }; 3968 - "@mixmark-io/domino-2.2.0" = { 3969 - name = "_at_mixmark-io_slash_domino"; 3970 - packageName = "@mixmark-io/domino"; 3971 - version = "2.2.0"; 3972 - src = fetchurl { 3973 - url = "https://registry.npmjs.org/@mixmark-io/domino/-/domino-2.2.0.tgz"; 3974 - sha512 = "Y28PR25bHXUg88kCV7nivXrP2Nj2RueZ3/l/jdx6J9f8J4nsEGcgX0Qe6lt7Pa+J79+kPiJU3LguR6O/6zrLOw=="; 3975 - }; 3976 - }; 3977 "@noble/curves-1.4.2" = { 3978 name = "_at_noble_slash_curves"; 3979 packageName = "@noble/curves"; ··· 5135 sha512 = "XJfwUVUKDHF5ugKwIcxEgc9k8b7HbznCp6eUfWgu710hMPNIO4aw4/zB5RogDQz8nd6gyCDpU9O/m6qYEWY6yQ=="; 5136 }; 5137 }; 5138 - "@sindresorhus/chunkify-0.2.0" = { 5139 - name = "_at_sindresorhus_slash_chunkify"; 5140 - packageName = "@sindresorhus/chunkify"; 5141 - version = "0.2.0"; 5142 - src = fetchurl { 5143 - url = "https://registry.npmjs.org/@sindresorhus/chunkify/-/chunkify-0.2.0.tgz"; 5144 - sha512 = "mOAiwqu+bIIkNFDCXFJxZEmF9p9WHfSBbpLLmgysYnNkEs7aA0/AvU9+6zLHFqI7JnqdqwAuWu8CbGwGIszRdw=="; 5145 - }; 5146 - }; 5147 - "@sindresorhus/df-1.0.1" = { 5148 - name = "_at_sindresorhus_slash_df"; 5149 - packageName = "@sindresorhus/df"; 5150 - version = "1.0.1"; 5151 - src = fetchurl { 5152 - url = "https://registry.npmjs.org/@sindresorhus/df/-/df-1.0.1.tgz"; 5153 - sha512 = "1Hyp7NQnD/u4DSxR2DGW78TF9k7R0wZ8ev0BpMAIzA6yTQSHqNb5wTuvtcPYf4FWbVse2rW7RgDsyL8ua2vXHw=="; 5154 - }; 5155 - }; 5156 - "@sindresorhus/df-3.1.1" = { 5157 - name = "_at_sindresorhus_slash_df"; 5158 - packageName = "@sindresorhus/df"; 5159 - version = "3.1.1"; 5160 - src = fetchurl { 5161 - url = "https://registry.npmjs.org/@sindresorhus/df/-/df-3.1.1.tgz"; 5162 - sha512 = "SME/vtXaJcnQ/HpeV6P82Egy+jThn11IKfwW8+/XVoRD0rmPHVTeKMtww1oWdVnMykzVPjmrDN9S8NBndPEHCQ=="; 5163 - }; 5164 - }; 5165 "@sindresorhus/is-0.14.0" = { 5166 name = "_at_sindresorhus_slash_is"; 5167 packageName = "@sindresorhus/is"; ··· 5853 src = fetchurl { 5854 url = "https://registry.npmjs.org/@stoplight/yaml-ast-parser/-/yaml-ast-parser-0.0.50.tgz"; 5855 sha512 = "Pb6M8TDO9DtSVla9yXSTAxmo9GVEouq5P40DWXdOie69bXogZTkgvopCq+yEvTMA0F6PEvdJmbtTV3ccIp11VQ=="; 5856 - }; 5857 - }; 5858 - "@stroncium/procfs-1.2.1" = { 5859 - name = "_at_stroncium_slash_procfs"; 5860 - packageName = "@stroncium/procfs"; 5861 - version = "1.2.1"; 5862 - src = fetchurl { 5863 - url = "https://registry.npmjs.org/@stroncium/procfs/-/procfs-1.2.1.tgz"; 5864 - sha512 = "X1Iui3FUNZP18EUvysTHxt+Avu2nlVzyf90YM8OYgP6SGzTzzX/0JgObfO1AQQDzuZtNNz29bVh8h5R97JrjxA=="; 5865 }; 5866 }; 5867 "@stylelint/postcss-css-in-js-0.37.3" = { ··· 9005 sha512 = "YkwkMmPA2+GSGvXj1s9NZ6cc2LBtR+uSeWTy2IGi5MR1Wag4DdrcjTxA/YV/Fw+qKlBeXomneZgThEbm/wvZbw=="; 9006 }; 9007 }; 9008 - "array-union-1.0.2" = { 9009 - name = "array-union"; 9010 - packageName = "array-union"; 9011 - version = "1.0.2"; 9012 - src = fetchurl { 9013 - url = "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz"; 9014 - sha512 = "Dxr6QJj/RdU/hCaBjOfxW+q6lyuVE6JFWIrAUpuOOhoJJoQ99cUn3igRaHVB5P9WrgFVN0FfArM3x0cueOU8ng=="; 9015 - }; 9016 - }; 9017 "array-union-2.1.0" = { 9018 name = "array-union"; 9019 packageName = "array-union"; ··· 9752 sha512 = "lGe34o6EHj9y3Kts9R4ZYs/Gr+6N7MCaMlIFA3F1R2O5/m7K06AxfSeO5530PEERE6/WyEg3lsuyw4GHlPZHog=="; 9753 }; 9754 }; 9755 - "bash-language-server-5.4.3" = { 9756 - name = "bash-language-server"; 9757 - packageName = "bash-language-server"; 9758 - version = "5.4.3"; 9759 - src = fetchurl { 9760 - url = "https://registry.npmjs.org/bash-language-server/-/bash-language-server-5.4.3.tgz"; 9761 - sha512 = "bWpLfob5YAOKKbhxyIldvalP+xrBORrUDZMbcPJAhrhC+xiEVREGV9LfFc01Ce5HhpN+f3sNn+sOYlBf+EO98g=="; 9762 - }; 9763 - }; 9764 "basic-auth-2.0.1" = { 9765 name = "basic-auth"; 9766 packageName = "basic-auth"; ··· 12362 sha512 = "KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ=="; 12363 }; 12364 }; 12365 - "comment-json-1.1.3" = { 12366 - name = "comment-json"; 12367 - packageName = "comment-json"; 12368 - version = "1.1.3"; 12369 - src = fetchurl { 12370 - url = "https://registry.npmjs.org/comment-json/-/comment-json-1.1.3.tgz"; 12371 - sha512 = "gGSHSON1HdpFDb3WpU6C1tdksZV0lpfzoihXK+CD0l4xQ2TvHbVuiZy8Dg414ZqbeRxt2sU8d9kC0srpM2+RzQ=="; 12372 - }; 12373 - }; 12374 "comment-json-4.2.5" = { 12375 name = "comment-json"; 12376 packageName = "comment-json"; ··· 13416 sha512 = "x8dy3RnvYdlUcPOjkEHqozhiwzKNSq7GcPuXFbnyMOCHxX8V3OgIg/pYuabl2sbUPfIJaeAQB7PMOK8DFIdoRA=="; 13417 }; 13418 }; 13419 - "cspell-dict-vimlang-1.0.1" = { 13420 - name = "cspell-dict-vimlang"; 13421 - packageName = "cspell-dict-vimlang"; 13422 - version = "1.0.1"; 13423 - src = fetchurl { 13424 - url = "https://registry.npmjs.org/cspell-dict-vimlang/-/cspell-dict-vimlang-1.0.1.tgz"; 13425 - sha512 = "pP2W2BvLrRKggS1fUk8qQw2FG8PhyV969dlwF3M0jAg/HH83n76H+KGdzGsmEut6VJFlJYQkd1ZZskjaeVWnrA=="; 13426 - }; 13427 - }; 13428 - "cspell-glob-0.1.25" = { 13429 - name = "cspell-glob"; 13430 - packageName = "cspell-glob"; 13431 - version = "0.1.25"; 13432 - src = fetchurl { 13433 - url = "https://registry.npmjs.org/cspell-glob/-/cspell-glob-0.1.25.tgz"; 13434 - sha512 = "/XaSHrGBpMJa+duFz3GKOWfrijrfdHT7a/XGgIcq3cymCSpOH+DPho42sl0jLI/hjM+8yv2m8aEoxRT8yVSnlg=="; 13435 - }; 13436 - }; 13437 - "cspell-io-4.1.7" = { 13438 - name = "cspell-io"; 13439 - packageName = "cspell-io"; 13440 - version = "4.1.7"; 13441 - src = fetchurl { 13442 - url = "https://registry.npmjs.org/cspell-io/-/cspell-io-4.1.7.tgz"; 13443 - sha512 = "V0/tUu9FnIS3v+vAvDT6NNa14Nc/zUNX8+YUUOfFAiDJJTdqefmvcWjOJBIMYBf3wIk9iWLmLbMM+bNHqr7DSQ=="; 13444 - }; 13445 - }; 13446 - "cspell-lib-4.3.12" = { 13447 - name = "cspell-lib"; 13448 - packageName = "cspell-lib"; 13449 - version = "4.3.12"; 13450 - src = fetchurl { 13451 - url = "https://registry.npmjs.org/cspell-lib/-/cspell-lib-4.3.12.tgz"; 13452 - sha512 = "yCCb6MoW1K8Tsr/WVEQoO4dfYhH9bCsjQayccb8MlyDaNNuWJHuX+gUGHsZSXSuChSh8PrTWKXJzs13/uM977g=="; 13453 - }; 13454 - }; 13455 - "cspell-trie-lib-4.2.8" = { 13456 - name = "cspell-trie-lib"; 13457 - packageName = "cspell-trie-lib"; 13458 - version = "4.2.8"; 13459 - src = fetchurl { 13460 - url = "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-4.2.8.tgz"; 13461 - sha512 = "Nt3c0gxOYXIc3/yhALDukpje1BgR6guvlUKWQO2zb0r7qRWpwUw2j2YM4dWbHQeH/3Hx5ei4Braa6cMaiJ5YBw=="; 13462 - }; 13463 - }; 13464 - "cspell-util-bundle-4.1.11" = { 13465 - name = "cspell-util-bundle"; 13466 - packageName = "cspell-util-bundle"; 13467 - version = "4.1.11"; 13468 - src = fetchurl { 13469 - url = "https://registry.npmjs.org/cspell-util-bundle/-/cspell-util-bundle-4.1.11.tgz"; 13470 - sha512 = "or3OGKydZs1NwweMIgnA48k8H3F5zK4e5lonjUhpEzLYQZ2nB23decdoqZ8ogFC8pFTA40tZKDsMJ0b+65gX4Q=="; 13471 - }; 13472 - }; 13473 "css-select-4.3.0" = { 13474 name = "css-select"; 13475 packageName = "css-select"; ··· 14811 sha512 = "2xMCmOoMrdQIPHdsTawECdNPwlVFB9zGcz3kuhmBO6U3oU+UQjsue0i8ayLKpgBcm+hcXPMVSGUN9d+pvJ6+VQ=="; 14812 }; 14813 }; 14814 - "dir-glob-2.2.2" = { 14815 - name = "dir-glob"; 14816 - packageName = "dir-glob"; 14817 - version = "2.2.2"; 14818 - src = fetchurl { 14819 - url = "https://registry.npmjs.org/dir-glob/-/dir-glob-2.2.2.tgz"; 14820 - sha512 = "f9LBi5QWzIW3I6e//uxZoLBlUt9kcp66qo0sSCxL6YZKc75R1c4MFCoe/LaZiBGmgujvQdxc5Bn3QhfyvK5Hsw=="; 14821 - }; 14822 - }; 14823 "dir-glob-3.0.1" = { 14824 name = "dir-glob"; 14825 packageName = "dir-glob"; ··· 15387 sha512 = "L9Qe08KWTlqYMVvMcTIvMAdl1cDUubzRNYL+WfA4bLDMHe4nemKkpmYzkznE1FwLKu0EEmy6obgQKzMJrg4x9Q=="; 15388 }; 15389 }; 15390 - "editorconfig-2.0.0" = { 15391 - name = "editorconfig"; 15392 - packageName = "editorconfig"; 15393 - version = "2.0.0"; 15394 - src = fetchurl { 15395 - url = "https://registry.npmjs.org/editorconfig/-/editorconfig-2.0.0.tgz"; 15396 - sha512 = "s1NQ63WQ7RNXH6Efb2cwuyRlfpbtdZubvfNe4vCuoyGPewNPY7vah8JUSOFBiJ+jr99Qh8t0xKv0oITc1dclgw=="; 15397 - }; 15398 - }; 15399 "ee-first-1.1.1" = { 15400 name = "ee-first"; 15401 packageName = "ee-first"; ··· 16413 sha512 = "yAcIQxtmMiB/jL32dzEp2enBeidsB7xWPLNiw3IIkpVds1P+h7qF9YwJq1yUNzp2OKXgAprs4F61ih66UsoD1A=="; 16414 }; 16415 }; 16416 - "esprima-2.7.3" = { 16417 - name = "esprima"; 16418 - packageName = "esprima"; 16419 - version = "2.7.3"; 16420 - src = fetchurl { 16421 - url = "https://registry.npmjs.org/esprima/-/esprima-2.7.3.tgz"; 16422 - sha512 = "OarPfz0lFCiW4/AV2Oy1Rp9qu0iusTKqykwTspGCZtPxmF81JR4MmIebvF1F9+UOKth2ZubLQ4XGGaU+hSn99A=="; 16423 - }; 16424 - }; 16425 "esprima-4.0.1" = { 16426 name = "esprima"; 16427 packageName = "esprima"; ··· 16683 sha512 = "adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA=="; 16684 }; 16685 }; 16686 - "execa-2.1.0" = { 16687 - name = "execa"; 16688 - packageName = "execa"; 16689 - version = "2.1.0"; 16690 - src = fetchurl { 16691 - url = "https://registry.npmjs.org/execa/-/execa-2.1.0.tgz"; 16692 - sha512 = "Y/URAVapfbYy2Xp/gb6A0E7iR8xeqOCXsuuaoMn7A5PzrXUK84E1gyiEfq0wQd/GHA6GsoHWwhNq8anb0mleIw=="; 16693 - }; 16694 - }; 16695 "execa-5.1.1" = { 16696 name = "execa"; 16697 packageName = "execa"; ··· 17068 src = fetchurl { 17069 url = "https://registry.npmjs.org/fast-fifo/-/fast-fifo-1.3.2.tgz"; 17070 sha512 = "/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ=="; 17071 - }; 17072 - }; 17073 - "fast-glob-3.3.2" = { 17074 - name = "fast-glob"; 17075 - packageName = "fast-glob"; 17076 - version = "3.3.2"; 17077 - src = fetchurl { 17078 - url = "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz"; 17079 - sha512 = "oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow=="; 17080 }; 17081 }; 17082 "fast-glob-3.3.3" = { ··· 18393 sha512 = "H7cUpwCQSiJmAHM4c/aFu6fUfrhWXW1ncyh8ftxEPMu6AiYkHw9K8br720TGPZJbk5eOH2bynjZD1yPvdDAmag=="; 18394 }; 18395 }; 18396 - "gensequence-2.3.0" = { 18397 - name = "gensequence"; 18398 - packageName = "gensequence"; 18399 - version = "2.3.0"; 18400 - src = fetchurl { 18401 - url = "https://registry.npmjs.org/gensequence/-/gensequence-2.3.0.tgz"; 18402 - sha512 = "XrmtQsfTd1Mdt60fNG3sDpmo7yX3UaCd2RzrfWGbgE86H2k/pppGs84zFV2WSh9UwXIVNs0O62HeIrxIcTZntQ=="; 18403 - }; 18404 - }; 18405 - "gensequence-3.1.1" = { 18406 - name = "gensequence"; 18407 - packageName = "gensequence"; 18408 - version = "3.1.1"; 18409 - src = fetchurl { 18410 - url = "https://registry.npmjs.org/gensequence/-/gensequence-3.1.1.tgz"; 18411 - sha512 = "ys3h0hiteRwmY6BsvSttPmkhC0vEQHPJduANBRtH/dlDPZ0UBIb/dXy80IcckXyuQ6LKg+PloRqvGER9IS7F7g=="; 18412 - }; 18413 - }; 18414 "gensync-1.0.0-beta.2" = { 18415 name = "gensync"; 18416 packageName = "gensync"; ··· 18951 sha512 = "wHTUcDUoZ1H5/0iVqEudYW4/kAlN5cZ3j/bXn0Dpbizl9iaUVeWSHqiOjsgk6OW2bkLclbBjzewBz6weQ1zA2Q=="; 18952 }; 18953 }; 18954 - "global-dirs-0.1.1" = { 18955 - name = "global-dirs"; 18956 - packageName = "global-dirs"; 18957 - version = "0.1.1"; 18958 - src = fetchurl { 18959 - url = "https://registry.npmjs.org/global-dirs/-/global-dirs-0.1.1.tgz"; 18960 - sha512 = "NknMLn7F2J7aflwFOlGdNIuCDpN3VGoSoB+aap3KABFWbHVn1TCgFC+np23J8W2BiZbjfEw3BFBycSMv1AFblg=="; 18961 - }; 18962 - }; 18963 "global-dirs-3.0.1" = { 18964 name = "global-dirs"; 18965 packageName = "global-dirs"; ··· 19066 src = fetchurl { 19067 url = "https://registry.npmjs.org/globby/-/globby-14.1.0.tgz"; 19068 sha512 = "0Ia46fDOaT7k4og1PDW4YbodWWr3scS2vAr2lTbsplOt2WkKp0vQbkI9wKis/T5LV/dqPjO3bpS/z6GTJB82LA=="; 19069 - }; 19070 - }; 19071 - "globby-7.1.1" = { 19072 - name = "globby"; 19073 - packageName = "globby"; 19074 - version = "7.1.1"; 19075 - src = fetchurl { 19076 - url = "https://registry.npmjs.org/globby/-/globby-7.1.1.tgz"; 19077 - sha512 = "yANWAN2DUcBtuus5Cpd+SKROzXHs2iVXFZt/Ykrfz6SAXqacLX25NZpltE+39ceMexYF4TtEadjuSTw8+3wX4g=="; 19078 }; 19079 }; 19080 "globjoin-0.1.4" = { ··· 22542 sha512 = "1P/yWsxPlDtn7QeRD+ULKQPaIaN6yF368GZ2vDfv0AL0NwpStafjWCDDdn0k8wgFMWpVAqG7oJhxHnlud42i9w=="; 22543 }; 22544 }; 22545 - "iterable-to-stream-1.0.1" = { 22546 - name = "iterable-to-stream"; 22547 - packageName = "iterable-to-stream"; 22548 - version = "1.0.1"; 22549 - src = fetchurl { 22550 - url = "https://registry.npmjs.org/iterable-to-stream/-/iterable-to-stream-1.0.1.tgz"; 22551 - sha512 = "O62gD5ADMUGtJoOoM9U6LQ7i4byPXUNoHJ6mqsmkQJcom331ZJGDApWgDESWyBMEHEJRjtHozgIiTzYo9RU4UA=="; 22552 - }; 22553 - }; 22554 "jackspeak-3.4.3" = { 22555 name = "jackspeak"; 22556 packageName = "jackspeak"; ··· 22974 sha512 = "XgP0FGR77+QhUxjXkwOMkC94k3WtqEBfcnjWqhRd82qTat4SWKRE+9kUnynz/shm3I4ea2+qISvTIeGTNU7kJg=="; 22975 }; 22976 }; 22977 - "json-parser-1.1.5" = { 22978 - name = "json-parser"; 22979 - packageName = "json-parser"; 22980 - version = "1.1.5"; 22981 - src = fetchurl { 22982 - url = "https://registry.npmjs.org/json-parser/-/json-parser-1.1.5.tgz"; 22983 - sha512 = "6wQrWqKdbvCQ4ccCM1+14Q2Z2XTXeUqwt3xEaGe/GpsObJRh1n1Z+5ZeHosmfSpN5bJKDfeNRy9jOE+wQRduOg=="; 22984 - }; 22985 - }; 22986 "json-refs-3.0.15" = { 22987 name = "json-refs"; 22988 packageName = "json-refs"; ··· 26863 sha512 = "0jWhJpD/MdhPXwPuiRkCbfYfSKp2qnn2eOc279qI7f+osl/l+prKSrvhg157zSYvx/1nmgn2NqdT6k2Z7zSH9w=="; 26864 }; 26865 }; 26866 - "minimatch-9.0.2" = { 26867 - name = "minimatch"; 26868 - packageName = "minimatch"; 26869 - version = "9.0.2"; 26870 - src = fetchurl { 26871 - url = "https://registry.npmjs.org/minimatch/-/minimatch-9.0.2.tgz"; 26872 - sha512 = "PZOT9g5v2ojiTL7r1xF6plNHLtOeTpSlDI007As2NlA2aYBMfVom17yqa6QzhmDP8QOhn7LjHTg7DFCVSSa6yg=="; 26873 - }; 26874 - }; 26875 "minimatch-9.0.5" = { 26876 name = "minimatch"; 26877 packageName = "minimatch"; ··· 27149 src = fetchurl { 27150 url = "https://registry.npmjs.org/morgan/-/morgan-1.10.0.tgz"; 27151 sha512 = "AbegBVI4sh6El+1gNwvD5YIck7nSA36weD7xvIxG4in80j/UoK8AEGaWnnz8v1GxonMCltmlNs5ZKbGvl9b1XQ=="; 27152 - }; 27153 - }; 27154 - "mount-point-3.0.0" = { 27155 - name = "mount-point"; 27156 - packageName = "mount-point"; 27157 - version = "3.0.0"; 27158 - src = fetchurl { 27159 - url = "https://registry.npmjs.org/mount-point/-/mount-point-3.0.0.tgz"; 27160 - sha512 = "jAhfD7ZCG+dbESZjcY1SdFVFqSJkh/yGbdsifHcPkvuLRO5ugK0Ssmd9jdATu29BTd4JiN+vkpMzVvsUgP3SZA=="; 27161 - }; 27162 - }; 27163 - "move-file-3.1.0" = { 27164 - name = "move-file"; 27165 - packageName = "move-file"; 27166 - version = "3.1.0"; 27167 - src = fetchurl { 27168 - url = "https://registry.npmjs.org/move-file/-/move-file-3.1.0.tgz"; 27169 - sha512 = "4aE3U7CCBWgrQlQDMq8da4woBWDGHioJFiOZ8Ie6Yq2uwYQ9V2kGhTz4x3u6Wc+OU17nw0yc3rJ/lQ4jIiPe3A=="; 27170 }; 27171 }; 27172 "mqtt-4.3.8" = { ··· 28043 sha512 = "TkCET/3rr9mUuRp+CpO7qfgT++aAxfDRaalQhwPFzI9BY/2rCDn6OfpZOVggi1AXfTPpfkTrg5f5WQx5G1uLxA=="; 28044 }; 28045 }; 28046 - "node-watch-0.6.4" = { 28047 - name = "node-watch"; 28048 - packageName = "node-watch"; 28049 - version = "0.6.4"; 28050 - src = fetchurl { 28051 - url = "https://registry.npmjs.org/node-watch/-/node-watch-0.6.4.tgz"; 28052 - sha512 = "cI6CHzivIFESe8djiK3Wh90CtWQBxLwMem8x8S+2GSvCvFgoMuOKVlfJtQ/2v3Afg3wOnHl/+tXotEs8z5vOrg=="; 28053 - }; 28054 - }; 28055 "node.extend-1.0.0" = { 28056 name = "node.extend"; 28057 packageName = "node.extend"; ··· 28401 src = fetchurl { 28402 url = "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz"; 28403 sha512 = "lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw=="; 28404 - }; 28405 - }; 28406 - "npm-run-path-3.1.0" = { 28407 - name = "npm-run-path"; 28408 - packageName = "npm-run-path"; 28409 - version = "3.1.0"; 28410 - src = fetchurl { 28411 - url = "https://registry.npmjs.org/npm-run-path/-/npm-run-path-3.1.0.tgz"; 28412 - sha512 = "Dbl4A/VfiVGLgQv29URL9xshU8XDY1GeLy+fsaZ1AA8JDSfjvr5P5+pzRbWqRSBxk6/DW7MIh8lTM/PaGnP2kg=="; 28413 }; 28414 }; 28415 "npm-run-path-4.0.1" = { ··· 29276 sha512 = "LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow=="; 29277 }; 29278 }; 29279 - "p-finally-2.0.1" = { 29280 - name = "p-finally"; 29281 - packageName = "p-finally"; 29282 - version = "2.0.1"; 29283 - src = fetchurl { 29284 - url = "https://registry.npmjs.org/p-finally/-/p-finally-2.0.1.tgz"; 29285 - sha512 = "vpm09aKwq6H9phqRQzecoDpD8TmVyGw70qmWlyq5onxY7tqyTTFVvxMykxQSQKILBSFlbXpypIw2T1Ml7+DDtw=="; 29286 - }; 29287 - }; 29288 "p-is-promise-2.1.0" = { 29289 name = "p-is-promise"; 29290 packageName = "p-is-promise"; ··· 30185 sha512 = "dUnb5dXUf+kzhC/W/F4e5/SkluXIFf5VUHolW1Eg1irn1hGWjPGdsRcvYJ1nD6lhk8Ir7VM0bHJKsYTx8Jx9OQ=="; 30186 }; 30187 }; 30188 - "path-type-3.0.0" = { 30189 - name = "path-type"; 30190 - packageName = "path-type"; 30191 - version = "3.0.0"; 30192 - src = fetchurl { 30193 - url = "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz"; 30194 - sha512 = "T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg=="; 30195 - }; 30196 - }; 30197 "path-type-4.0.0" = { 30198 name = "path-type"; 30199 packageName = "path-type"; ··· 33317 sha512 = "qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw=="; 33318 }; 33319 }; 33320 - "resolve-global-1.0.0" = { 33321 - name = "resolve-global"; 33322 - packageName = "resolve-global"; 33323 - version = "1.0.0"; 33324 - src = fetchurl { 33325 - url = "https://registry.npmjs.org/resolve-global/-/resolve-global-1.0.0.tgz"; 33326 - sha512 = "zFa12V4OLtT5XUX/Q4VLvTfBf+Ok0SPc1FNGM/z9ctUdiU618qwKpWnd0CHs3+RqROfyEg/DhuHbMWYqcgljEw=="; 33327 - }; 33328 - }; 33329 "resolve-options-2.0.0" = { 33330 name = "resolve-options"; 33331 packageName = "resolve-options"; ··· 34802 sha512 = "oVTC072yJCXdkjUXAA3rRsRo1op6XfAH1/AXJQznxdwwiYTEvYB6eG9SOU8FeVaEuz+LuoPDYEY5BBMj+uRHVQ=="; 34803 }; 34804 }; 34805 - "slash-1.0.0" = { 34806 - name = "slash"; 34807 - packageName = "slash"; 34808 - version = "1.0.0"; 34809 - src = fetchurl { 34810 - url = "https://registry.npmjs.org/slash/-/slash-1.0.0.tgz"; 34811 - sha512 = "3TYDR7xWt4dIqV2JauJr+EJeW356RXijHeUlO+8djJ+uBXPn8/2dpzBc8yQhh583sVvc9CvFAeQVgijsH+PNNg=="; 34812 - }; 34813 - }; 34814 "slash-2.0.0" = { 34815 name = "slash"; 34816 packageName = "slash"; ··· 37349 sha512 = "tk2G5R2KRwBd+ZN0zaEXpmzdKyOYksXwywulIX95MBODjSzMIuQnQ3m8JxgbhnL1LeVo7lqQKsYa1O3Htl7K5g=="; 37350 }; 37351 }; 37352 - "trash-8.1.1" = { 37353 - name = "trash"; 37354 - packageName = "trash"; 37355 - version = "8.1.1"; 37356 - src = fetchurl { 37357 - url = "https://registry.npmjs.org/trash/-/trash-8.1.1.tgz"; 37358 - sha512 = "r15NUF+BJpDBKLTyOXaB+PhF8qh53TAOTpu/wCt6bqpu488jamsiOV7VdC//yPwAnyGIv1EJgetEnjLNer5XVw=="; 37359 - }; 37360 - }; 37361 "tree-kill-1.2.2" = { 37362 name = "tree-kill"; 37363 packageName = "tree-kill"; ··· 37592 sha512 = "McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w=="; 37593 }; 37594 }; 37595 - "turndown-7.2.0" = { 37596 - name = "turndown"; 37597 - packageName = "turndown"; 37598 - version = "7.2.0"; 37599 - src = fetchurl { 37600 - url = "https://registry.npmjs.org/turndown/-/turndown-7.2.0.tgz"; 37601 - sha512 = "eCZGBN4nNNqM9Owkv9HAtWRYfLA4h909E/WGAWWBpmB275ehNhZyk87/Tpvjbp0jjNl9XwCsbe6bm6CqFsgD+A=="; 37602 - }; 37603 - }; 37604 "tus-js-client-4.3.1" = { 37605 name = "tus-js-client"; 37606 packageName = "tus-js-client"; ··· 39878 sha512 = "xGmv9QIWs2H8obGbWg+sIPI/3/pFgj/5OWBhNzs00BkYQ9UaB2F6JJaGB/2/YOZJ3BvLXQTC4Q7muqU25QgAhA=="; 39879 }; 39880 }; 39881 - "vscode-jsonrpc-4.0.0" = { 39882 - name = "vscode-jsonrpc"; 39883 - packageName = "vscode-jsonrpc"; 39884 - version = "4.0.0"; 39885 - src = fetchurl { 39886 - url = "https://registry.npmjs.org/vscode-jsonrpc/-/vscode-jsonrpc-4.0.0.tgz"; 39887 - sha512 = "perEnXQdQOJMTDFNv+UF3h1Y0z4iSiaN9jIlb0OqIYgosPCZGYh/MCUlkFtV2668PL69lRDO32hmvL2yiidUYg=="; 39888 - }; 39889 - }; 39890 "vscode-jsonrpc-5.1.0-next.1" = { 39891 name = "vscode-jsonrpc"; 39892 packageName = "vscode-jsonrpc"; ··· 39905 sha512 = "wnJA4BnEjOSyFMvjZdpiOwhSq9uDoK8e/kpRJDTaMYzwlkrhG1fwDIZI94CLsLzlCK5cIbMMtFlJlfR57Lavmg=="; 39906 }; 39907 }; 39908 - "vscode-jsonrpc-8.0.2" = { 39909 - name = "vscode-jsonrpc"; 39910 - packageName = "vscode-jsonrpc"; 39911 - version = "8.0.2"; 39912 - src = fetchurl { 39913 - url = "https://registry.npmjs.org/vscode-jsonrpc/-/vscode-jsonrpc-8.0.2.tgz"; 39914 - sha512 = "RY7HwI/ydoC1Wwg4gJ3y6LpU9FJRZAUnTYMXthqhFXXu77ErDd/xkREpGuk4MyYkk4a+XDWAMqe0S3KkelYQEQ=="; 39915 - }; 39916 - }; 39917 "vscode-jsonrpc-8.1.0" = { 39918 name = "vscode-jsonrpc"; 39919 packageName = "vscode-jsonrpc"; ··· 39941 sha512 = "kdjOSJ2lLIn7r1rtrMbbNCHjyMPfRnowdKjBQ+mGq6NAW5QY2bEZC/khaC5OR8svbbjvLEaIXkOq45e2X9BIbQ=="; 39942 }; 39943 }; 39944 - "vscode-languageserver-5.2.1" = { 39945 - name = "vscode-languageserver"; 39946 - packageName = "vscode-languageserver"; 39947 - version = "5.2.1"; 39948 - src = fetchurl { 39949 - url = "https://registry.npmjs.org/vscode-languageserver/-/vscode-languageserver-5.2.1.tgz"; 39950 - sha512 = "GuayqdKZqAwwaCUjDvMTAVRPJOp/SLON3mJ07eGsx/Iq9HjRymhKWztX41rISqDKhHVVyFM+IywICyZDla6U3A=="; 39951 - }; 39952 - }; 39953 "vscode-languageserver-6.2.0-next.2" = { 39954 name = "vscode-languageserver"; 39955 packageName = "vscode-languageserver"; ··· 39968 sha512 = "60HTx5ID+fLRcgdHfmz0LDZAXYEV68fzwG0JWwEPBode9NuMYTIxuYXPg4ngO8i8+Ou0lM7y6GzaYWbiDL0drw=="; 39969 }; 39970 }; 39971 - "vscode-languageserver-8.0.2" = { 39972 - name = "vscode-languageserver"; 39973 - packageName = "vscode-languageserver"; 39974 - version = "8.0.2"; 39975 - src = fetchurl { 39976 - url = "https://registry.npmjs.org/vscode-languageserver/-/vscode-languageserver-8.0.2.tgz"; 39977 - sha512 = "bpEt2ggPxKzsAOZlXmCJ50bV7VrxwCS5BI4+egUmure/oI/t4OlFzi/YNtVvY24A2UDOZAgwFGgnZPwqSJubkA=="; 39978 - }; 39979 - }; 39980 "vscode-languageserver-8.1.0" = { 39981 name = "vscode-languageserver"; 39982 packageName = "vscode-languageserver"; ··· 39986 sha512 = "eUt8f1z2N2IEUDBsKaNapkz7jl5QpskN2Y0G01T/ItMxBxw1fJwvtySGB9QMecatne8jFIWJGWI61dWjyTLQsw=="; 39987 }; 39988 }; 39989 - "vscode-languageserver-protocol-3.14.1" = { 39990 - name = "vscode-languageserver-protocol"; 39991 - packageName = "vscode-languageserver-protocol"; 39992 - version = "3.14.1"; 39993 - src = fetchurl { 39994 - url = "https://registry.npmjs.org/vscode-languageserver-protocol/-/vscode-languageserver-protocol-3.14.1.tgz"; 39995 - sha512 = "IL66BLb2g20uIKog5Y2dQ0IiigW0XKrvmWiOvc0yXw80z3tMEzEnHjaGAb3ENuU7MnQqgnYJ1Cl2l9RvNgDi4g=="; 39996 - }; 39997 - }; 39998 "vscode-languageserver-protocol-3.16.0" = { 39999 name = "vscode-languageserver-protocol"; 40000 packageName = "vscode-languageserver-protocol"; ··· 40013 sha512 = "atmkGT/W6tF0cx4SaWFYtFs2UeSeC28RPiap9myv2YZTaTCFvTBEPNWrU5QRKfkyM0tbgtGo6T3UCQ8tkDpjzA=="; 40014 }; 40015 }; 40016 - "vscode-languageserver-protocol-3.17.2" = { 40017 - name = "vscode-languageserver-protocol"; 40018 - packageName = "vscode-languageserver-protocol"; 40019 - version = "3.17.2"; 40020 - src = fetchurl { 40021 - url = "https://registry.npmjs.org/vscode-languageserver-protocol/-/vscode-languageserver-protocol-3.17.2.tgz"; 40022 - sha512 = "8kYisQ3z/SQ2kyjlNeQxbkkTNmVFoQCqkmGrzLH6A9ecPlgTbp3wDTnUNqaUxYr4vlAcloxx8zwy7G5WdguYNg=="; 40023 - }; 40024 - }; 40025 "vscode-languageserver-protocol-3.17.3" = { 40026 name = "vscode-languageserver-protocol"; 40027 packageName = "vscode-languageserver-protocol"; ··· 40058 sha512 = "cxWNPesCnQCcMPeenjKKsOCKQZ/L6Tv19DTRIGuLWe32lyzWhihGVJ/rcckZXJxfdKCFvRLS3fpBIsV/ZGX4zA=="; 40059 }; 40060 }; 40061 - "vscode-languageserver-types-3.14.0" = { 40062 - name = "vscode-languageserver-types"; 40063 - packageName = "vscode-languageserver-types"; 40064 - version = "3.14.0"; 40065 - src = fetchurl { 40066 - url = "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.14.0.tgz"; 40067 - sha512 = "lTmS6AlAlMHOvPQemVwo3CezxBp0sNB95KNPkqp3Nxd5VFEnuG1ByM0zlRWos0zjO3ZWtkvhal0COgiV1xIA4A=="; 40068 - }; 40069 - }; 40070 "vscode-languageserver-types-3.16.0" = { 40071 name = "vscode-languageserver-types"; 40072 packageName = "vscode-languageserver-types"; ··· 40085 sha512 = "tZFUSbyjUcrh+qQf13ALX4QDdOfDX0cVaBFgy7ktJ0VwS7AW/yRKgGPSxVqqP9OCMNPdqP57O5q47w2pEwfaUg=="; 40086 }; 40087 }; 40088 - "vscode-languageserver-types-3.17.2" = { 40089 name = "vscode-languageserver-types"; 40090 packageName = "vscode-languageserver-types"; 40091 - version = "3.17.2"; 40092 src = fetchurl { 40093 - url = "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.17.2.tgz"; 40094 - sha512 = "zHhCWatviizPIq9B7Vh9uvrH6x3sK8itC84HkamnBWoDFJtzBf7SWlpLCZUit72b3os45h6RWQNC9xHRDF8dRA=="; 40095 }; 40096 }; 40097 "vscode-languageserver-types-3.17.3" = { ··· 40128 src = fetchurl { 40129 url = "https://registry.npmjs.org/vscode-nls/-/vscode-nls-5.2.0.tgz"; 40130 sha512 = "RAaHx7B14ZU04EU31pT+rKz2/zSl7xMsfIZuo8pd+KZO6PXtQmpevpq3vxvWNcrGbdmhM/rr5Uw5Mz+NBfhVng=="; 40131 - }; 40132 - }; 40133 - "vscode-uri-1.0.8" = { 40134 - name = "vscode-uri"; 40135 - packageName = "vscode-uri"; 40136 - version = "1.0.8"; 40137 - src = fetchurl { 40138 - url = "https://registry.npmjs.org/vscode-uri/-/vscode-uri-1.0.8.tgz"; 40139 - sha512 = "obtSWTlbJ+a+TFRYGaUumtVwb+InIUVI0Lu0VBUAPmj2cU5JutEXg3xUE0c2J5Tcy7h2DEKVJBFi+Y9ZSFzzPQ=="; 40140 }; 40141 }; 40142 "vscode-uri-2.1.2" = { ··· 40256 sha512 = "d2JWLCivmZYTSIoge9MsgFCZrt571BikcWGYkjC1khllbTeDlGqZ2D8vD8E/lJa8WGWbb7Plm8/XJYV7IJHZZw=="; 40257 }; 40258 }; 40259 - "web-tree-sitter-0.24.5" = { 40260 - name = "web-tree-sitter"; 40261 - packageName = "web-tree-sitter"; 40262 - version = "0.24.5"; 40263 - src = fetchurl { 40264 - url = "https://registry.npmjs.org/web-tree-sitter/-/web-tree-sitter-0.24.5.tgz"; 40265 - sha512 = "+J/2VSHN8J47gQUAvF8KDadrfz6uFYVjxoxbKWDoXVsH2u7yLdarCnIURnrMA6uSRkgX3SdmqM5BOoQjPdSh5w=="; 40266 - }; 40267 - }; 40268 "web-vitals-0.2.4" = { 40269 name = "web-vitals"; 40270 packageName = "web-vitals"; ··· 40994 sha512 = "sqMMuL1rc0FmMBOzCpd0yuy9trqF2yTTVe+E9ogwCSWQCdDEtQUwrZPT6AxqtsFGRNxycgncbP/xmOOSPw5ZUw=="; 40995 }; 40996 }; 40997 - "xdg-trashdir-3.1.0" = { 40998 - name = "xdg-trashdir"; 40999 - packageName = "xdg-trashdir"; 41000 - version = "3.1.0"; 41001 - src = fetchurl { 41002 - url = "https://registry.npmjs.org/xdg-trashdir/-/xdg-trashdir-3.1.0.tgz"; 41003 - sha512 = "N1XQngeqMBoj9wM4ZFadVV2MymImeiFfYD+fJrNlcVcOHsJFFQe7n3b+aBoTPwARuq2HQxukfzVpQmAk1gN4sQ=="; 41004 - }; 41005 - }; 41006 "xenvar-0.5.1" = { 41007 name = "xenvar"; 41008 packageName = "xenvar"; ··· 41577 src = fetchurl { 41578 url = "https://registry.npmjs.org/zod/-/zod-3.23.8.tgz"; 41579 sha512 = "XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g=="; 41580 - }; 41581 - }; 41582 - "zod-3.24.1" = { 41583 - name = "zod"; 41584 - packageName = "zod"; 41585 - version = "3.24.1"; 41586 - src = fetchurl { 41587 - url = "https://registry.npmjs.org/zod/-/zod-3.24.1.tgz"; 41588 - sha512 = "muH7gBL9sI1nciMZV67X5fTKKBLtwpZ5VBp1vsOQzj1MhrBZ4wlVCm3gedKZWLp0Oyel8sIGfeiz54Su+OVT+A=="; 41589 }; 41590 }; 41591 "zwitch-1.0.5" = { ··· 47035 bypassCache = true; 47036 reconstructLock = true; 47037 }; 47038 - coc-explorer = nodeEnv.buildNodePackage { 47039 - name = "coc-explorer"; 47040 - packageName = "coc-explorer"; 47041 - version = "0.27.3"; 47042 - src = fetchurl { 47043 - url = "https://registry.npmjs.org/coc-explorer/-/coc-explorer-0.27.3.tgz"; 47044 - sha512 = "NakEw0nyOvlzqb/8P40ywDMv6mgtyNXOHAEftzLS3K4zgnaKLrt0PsaPmAYUlUfrNw+isGrveMSQB2azjSU0iA=="; 47045 - }; 47046 - dependencies = [ 47047 - sources."@sindresorhus/chunkify-0.2.0" 47048 - sources."@sindresorhus/df-3.1.1" 47049 - sources."@stroncium/procfs-1.2.1" 47050 - sources."aggregate-error-4.0.1" 47051 - sources."array-union-1.0.2" 47052 - sources."array-uniq-1.0.3" 47053 - sources."balanced-match-1.0.2" 47054 - sources."brace-expansion-1.1.11" 47055 - sources."clean-stack-4.2.0" 47056 - sources."concat-map-0.0.1" 47057 - sources."cross-spawn-7.0.6" 47058 - sources."dir-glob-2.2.2" 47059 - sources."end-of-stream-1.4.4" 47060 - sources."escape-string-regexp-5.0.0" 47061 - sources."execa-2.1.0" 47062 - sources."fs.realpath-1.0.0" 47063 - sources."get-stream-5.2.0" 47064 - sources."glob-7.2.3" 47065 - sources."globby-7.1.1" 47066 - sources."ignore-3.3.10" 47067 - sources."indent-string-5.0.0" 47068 - sources."inflight-1.0.6" 47069 - sources."inherits-2.0.4" 47070 - sources."is-path-inside-4.0.0" 47071 - sources."is-stream-2.0.1" 47072 - sources."isexe-2.0.0" 47073 - sources."merge-stream-2.0.0" 47074 - sources."mimic-fn-2.1.0" 47075 - sources."minimatch-3.1.2" 47076 - ( 47077 - sources."mount-point-3.0.0" 47078 - // { 47079 - dependencies = [ 47080 - sources."@sindresorhus/df-1.0.1" 47081 - sources."pify-2.3.0" 47082 - ]; 47083 - } 47084 - ) 47085 - sources."move-file-3.1.0" 47086 - sources."npm-run-path-3.1.0" 47087 - sources."once-1.4.0" 47088 - sources."onetime-5.1.2" 47089 - sources."os-homedir-1.0.2" 47090 - sources."p-finally-2.0.1" 47091 - sources."p-map-5.5.0" 47092 - sources."path-exists-5.0.0" 47093 - sources."path-is-absolute-1.0.1" 47094 - sources."path-key-3.1.1" 47095 - sources."path-type-3.0.0" 47096 - sources."pify-3.0.0" 47097 - sources."pinkie-2.0.4" 47098 - sources."pinkie-promise-2.0.1" 47099 - sources."pump-3.0.2" 47100 - sources."shebang-command-2.0.0" 47101 - sources."shebang-regex-3.0.0" 47102 - sources."signal-exit-3.0.7" 47103 - sources."slash-1.0.0" 47104 - sources."strip-final-newline-2.0.0" 47105 - sources."trash-8.1.1" 47106 - sources."user-home-2.0.0" 47107 - sources."uuid-8.3.2" 47108 - sources."which-2.0.2" 47109 - sources."wrappy-1.0.2" 47110 - sources."xdg-basedir-4.0.0" 47111 - sources."xdg-trashdir-3.1.0" 47112 - ]; 47113 - buildInputs = globalBuildInputs; 47114 - meta = { 47115 - description = "explorer for coc.nvim"; 47116 - homepage = "https://github.com/weirongxu/coc-explorer"; 47117 - license = "MIT"; 47118 - }; 47119 - production = true; 47120 - bypassCache = true; 47121 - reconstructLock = true; 47122 - }; 47123 coc-flutter = nodeEnv.buildNodePackage { 47124 name = "coc-flutter"; 47125 packageName = "coc-flutter"; ··· 47131 buildInputs = globalBuildInputs; 47132 meta = { 47133 description = "flutter support for (Neo)vim"; 47134 - license = "MIT"; 47135 - }; 47136 - production = true; 47137 - bypassCache = true; 47138 - reconstructLock = true; 47139 - }; 47140 - coc-git = nodeEnv.buildNodePackage { 47141 - name = "coc-git"; 47142 - packageName = "coc-git"; 47143 - version = "2.7.5"; 47144 - src = fetchurl { 47145 - url = "https://registry.npmjs.org/coc-git/-/coc-git-2.7.5.tgz"; 47146 - sha512 = "bmewJbSmVXB6JDal0AblJhPjmlo9J+QfepHCznK5LwB3pGeiyKPH/g5apiFQ2or4HX7L8FmyQqrzFPOe6O71OQ=="; 47147 - }; 47148 - buildInputs = globalBuildInputs; 47149 - meta = { 47150 - description = "Git extension for coc.nvim"; 47151 - homepage = "https://github.com/neoclide/coc-git#readme"; 47152 license = "MIT"; 47153 }; 47154 production = true; ··· 47439 bypassCache = true; 47440 reconstructLock = true; 47441 }; 47442 - coc-sh = nodeEnv.buildNodePackage { 47443 - name = "coc-sh"; 47444 - packageName = "coc-sh"; 47445 - version = "1.2.4"; 47446 - src = fetchurl { 47447 - url = "https://registry.npmjs.org/coc-sh/-/coc-sh-1.2.4.tgz"; 47448 - sha512 = "J3m8OBmy09MUSUYFdnnpN1MoC0diZsN+CebXJC/YtI70UqptUuNyDzbtROTiG8J+dUjuPEUi1VS+r21Ap4h0Hg=="; 47449 - }; 47450 - dependencies = [ 47451 - sources."@mixmark-io/domino-2.2.0" 47452 - sources."@nodelib/fs.scandir-2.1.5" 47453 - sources."@nodelib/fs.stat-2.0.5" 47454 - sources."@nodelib/fs.walk-1.2.8" 47455 - sources."@one-ini/wasm-0.1.1" 47456 - sources."balanced-match-1.0.2" 47457 - sources."bash-language-server-5.4.3" 47458 - sources."brace-expansion-2.0.1" 47459 - sources."braces-3.0.3" 47460 - sources."commander-11.1.0" 47461 - sources."editorconfig-2.0.0" 47462 - sources."encoding-0.1.13" 47463 - sources."fast-glob-3.3.2" 47464 - sources."fastq-1.19.1" 47465 - sources."fill-range-7.1.1" 47466 - sources."fuzzy-search-3.2.1" 47467 - sources."glob-parent-5.1.2" 47468 - sources."iconv-lite-0.6.3" 47469 - sources."is-extglob-2.1.1" 47470 - sources."is-glob-4.0.3" 47471 - sources."is-number-7.0.0" 47472 - sources."merge2-1.4.1" 47473 - sources."micromatch-4.0.8" 47474 - sources."minimatch-9.0.2" 47475 - sources."node-fetch-2.7.0" 47476 - sources."picomatch-2.3.1" 47477 - sources."queue-microtask-1.2.3" 47478 - sources."reusify-1.1.0" 47479 - sources."run-parallel-1.2.0" 47480 - sources."safer-buffer-2.1.2" 47481 - sources."semver-7.7.1" 47482 - sources."to-regex-range-5.0.1" 47483 - sources."tr46-0.0.3" 47484 - sources."tslib-2.8.1" 47485 - sources."turndown-7.2.0" 47486 - sources."vscode-jsonrpc-8.0.2" 47487 - sources."vscode-languageserver-8.0.2" 47488 - sources."vscode-languageserver-protocol-3.17.2" 47489 - sources."vscode-languageserver-textdocument-1.0.12" 47490 - sources."vscode-languageserver-types-3.17.2" 47491 - sources."web-tree-sitter-0.24.5" 47492 - sources."webidl-conversions-3.0.1" 47493 - sources."whatwg-url-5.0.0" 47494 - sources."zod-3.24.1" 47495 - ]; 47496 - buildInputs = globalBuildInputs; 47497 - meta = { 47498 - description = "sh extension for coc"; 47499 - homepage = "https://github.com/josa42/coc-sh#readme"; 47500 - license = "MIT"; 47501 - }; 47502 - production = true; 47503 - bypassCache = true; 47504 - reconstructLock = true; 47505 - }; 47506 coc-smartf = nodeEnv.buildNodePackage { 47507 name = "coc-smartf"; 47508 packageName = "coc-smartf"; ··· 47550 buildInputs = globalBuildInputs; 47551 meta = { 47552 description = "Ruby languageserver extension for coc.nvim, using solargraph"; 47553 - license = "MIT"; 47554 - }; 47555 - production = true; 47556 - bypassCache = true; 47557 - reconstructLock = true; 47558 - }; 47559 - coc-spell-checker = nodeEnv.buildNodePackage { 47560 - name = "coc-spell-checker"; 47561 - packageName = "coc-spell-checker"; 47562 - version = "1.3.2"; 47563 - src = fetchurl { 47564 - url = "https://registry.npmjs.org/coc-spell-checker/-/coc-spell-checker-1.3.2.tgz"; 47565 - sha512 = "b0uYYX706Fv6ATpsAVRyjaVBZ1kgEVmzse2BCYrNxvbgxZXgwyErMm5t8guIwAichchURjw0TWBn79tFjWB/eg=="; 47566 - }; 47567 - dependencies = [ 47568 - sources."@cspell/dict-aws-1.0.14" 47569 - sources."@cspell/dict-bash-1.0.18" 47570 - sources."@cspell/dict-companies-1.0.40" 47571 - sources."@cspell/dict-cpp-1.1.40" 47572 - sources."@cspell/dict-cryptocurrencies-1.0.10" 47573 - sources."@cspell/dict-csharp-1.0.11" 47574 - sources."@cspell/dict-css-1.0.13" 47575 - sources."@cspell/dict-django-1.0.26" 47576 - sources."@cspell/dict-dotnet-1.0.32" 47577 - sources."@cspell/dict-elixir-1.0.26" 47578 - sources."@cspell/dict-en-gb-1.1.33" 47579 - sources."@cspell/dict-en_us-1.2.45" 47580 - sources."@cspell/dict-filetypes-1.1.8" 47581 - sources."@cspell/dict-fonts-1.0.14" 47582 - sources."@cspell/dict-fullstack-1.0.39" 47583 - sources."@cspell/dict-golang-1.1.24" 47584 - sources."@cspell/dict-haskell-1.0.13" 47585 - sources."@cspell/dict-html-1.1.9" 47586 - sources."@cspell/dict-html-symbol-entities-1.0.23" 47587 - sources."@cspell/dict-java-1.0.23" 47588 - sources."@cspell/dict-latex-1.0.25" 47589 - sources."@cspell/dict-lorem-ipsum-1.0.22" 47590 - sources."@cspell/dict-lua-1.0.16" 47591 - sources."@cspell/dict-node-1.0.12" 47592 - sources."@cspell/dict-npm-1.0.16" 47593 - sources."@cspell/dict-php-1.0.25" 47594 - sources."@cspell/dict-powershell-1.0.19" 47595 - sources."@cspell/dict-python-1.0.38" 47596 - sources."@cspell/dict-ruby-1.0.15" 47597 - sources."@cspell/dict-rust-1.0.23" 47598 - sources."@cspell/dict-scala-1.0.21" 47599 - sources."@cspell/dict-software-terms-1.0.48" 47600 - sources."@cspell/dict-typescript-1.0.20" 47601 - sources."array-timsort-1.0.3" 47602 - sources."at-least-node-1.0.0" 47603 - sources."balanced-match-1.0.2" 47604 - sources."brace-expansion-1.1.11" 47605 - sources."braces-3.0.3" 47606 - sources."comment-json-1.1.3" 47607 - sources."concat-map-0.0.1" 47608 - sources."configstore-5.0.1" 47609 - sources."core-util-is-1.0.3" 47610 - sources."crypto-random-string-2.0.0" 47611 - sources."cspell-dict-vimlang-1.0.1" 47612 - sources."cspell-glob-0.1.25" 47613 - ( 47614 - sources."cspell-io-4.1.7" 47615 - // { 47616 - dependencies = [ 47617 - sources."iconv-lite-0.6.3" 47618 - ]; 47619 - } 47620 - ) 47621 - ( 47622 - sources."cspell-lib-4.3.12" 47623 - // { 47624 - dependencies = [ 47625 - sources."comment-json-4.2.5" 47626 - sources."esprima-4.0.1" 47627 - sources."fs-extra-9.1.0" 47628 - sources."gensequence-3.1.1" 47629 - sources."vscode-uri-3.1.0" 47630 - ]; 47631 - } 47632 - ) 47633 - ( 47634 - sources."cspell-trie-lib-4.2.8" 47635 - // { 47636 - dependencies = [ 47637 - sources."gensequence-3.1.1" 47638 - ]; 47639 - } 47640 - ) 47641 - sources."cspell-util-bundle-4.1.11" 47642 - sources."dot-prop-5.3.0" 47643 - sources."esprima-2.7.3" 47644 - sources."fill-range-7.1.1" 47645 - ( 47646 - sources."fs-extra-8.1.0" 47647 - // { 47648 - dependencies = [ 47649 - sources."jsonfile-4.0.0" 47650 - sources."universalify-0.1.2" 47651 - ]; 47652 - } 47653 - ) 47654 - sources."gensequence-2.3.0" 47655 - sources."global-dirs-0.1.1" 47656 - sources."graceful-fs-4.2.11" 47657 - sources."has-own-prop-2.0.0" 47658 - sources."iconv-lite-0.4.24" 47659 - sources."imurmurhash-0.1.4" 47660 - sources."ini-1.3.8" 47661 - sources."is-number-7.0.0" 47662 - sources."is-obj-2.0.0" 47663 - sources."is-typedarray-1.0.0" 47664 - sources."iterable-to-stream-1.0.1" 47665 - sources."json-parser-1.1.5" 47666 - sources."jsonfile-6.1.0" 47667 - sources."make-dir-3.1.0" 47668 - sources."micromatch-4.0.8" 47669 - sources."minimatch-3.1.2" 47670 - sources."node-watch-0.6.4" 47671 - sources."picomatch-2.3.1" 47672 - sources."repeat-string-1.6.1" 47673 - sources."resolve-from-5.0.0" 47674 - sources."resolve-global-1.0.0" 47675 - sources."rxjs-6.6.7" 47676 - sources."safer-buffer-2.1.2" 47677 - sources."semver-6.3.1" 47678 - sources."signal-exit-3.0.7" 47679 - sources."to-regex-range-5.0.1" 47680 - sources."tslib-1.14.1" 47681 - sources."typedarray-to-buffer-3.1.5" 47682 - sources."unique-string-2.0.0" 47683 - sources."universalify-2.0.1" 47684 - sources."vscode-jsonrpc-4.0.0" 47685 - ( 47686 - sources."vscode-languageserver-5.2.1" 47687 - // { 47688 - dependencies = [ 47689 - sources."vscode-uri-1.0.8" 47690 - ]; 47691 - } 47692 - ) 47693 - sources."vscode-languageserver-protocol-3.14.1" 47694 - sources."vscode-languageserver-types-3.14.0" 47695 - sources."vscode-uri-2.1.2" 47696 - sources."write-file-atomic-3.0.3" 47697 - sources."xdg-basedir-4.0.0" 47698 - ]; 47699 - buildInputs = globalBuildInputs; 47700 - meta = { 47701 - description = "Spelling checker for source code"; 47702 - homepage = "https://github.com/iamcco/coc-spell-checker"; 47703 license = "MIT"; 47704 }; 47705 production = true;
··· 2073 sha512 = "gB5C5nDIacLUdsMuW8YsM9SzK3vaFANe4J11CVXpovpy7bZUGrcJKmc6m/0gWG789pKr6XSZY2aEetjFvSRw5g=="; 2074 }; 2075 }; 2076 "@cspotcode/source-map-support-0.8.1" = { 2077 name = "_at_cspotcode_slash_source-map-support"; 2078 packageName = "@cspotcode/source-map-support"; ··· 3659 sha512 = "2SBN7A/iCVufTmuXdS+W1wY0MZaEyhxlme/NQTlXbTaYWaMGZJMso3YRBNKJJLE1T7NkxsvCVCp7/2QSh8k+JA=="; 3660 }; 3661 }; 3662 "@noble/curves-1.4.2" = { 3663 name = "_at_noble_slash_curves"; 3664 packageName = "@noble/curves"; ··· 4820 sha512 = "XJfwUVUKDHF5ugKwIcxEgc9k8b7HbznCp6eUfWgu710hMPNIO4aw4/zB5RogDQz8nd6gyCDpU9O/m6qYEWY6yQ=="; 4821 }; 4822 }; 4823 "@sindresorhus/is-0.14.0" = { 4824 name = "_at_sindresorhus_slash_is"; 4825 packageName = "@sindresorhus/is"; ··· 5511 src = fetchurl { 5512 url = "https://registry.npmjs.org/@stoplight/yaml-ast-parser/-/yaml-ast-parser-0.0.50.tgz"; 5513 sha512 = "Pb6M8TDO9DtSVla9yXSTAxmo9GVEouq5P40DWXdOie69bXogZTkgvopCq+yEvTMA0F6PEvdJmbtTV3ccIp11VQ=="; 5514 }; 5515 }; 5516 "@stylelint/postcss-css-in-js-0.37.3" = { ··· 8654 sha512 = "YkwkMmPA2+GSGvXj1s9NZ6cc2LBtR+uSeWTy2IGi5MR1Wag4DdrcjTxA/YV/Fw+qKlBeXomneZgThEbm/wvZbw=="; 8655 }; 8656 }; 8657 "array-union-2.1.0" = { 8658 name = "array-union"; 8659 packageName = "array-union"; ··· 9392 sha512 = "lGe34o6EHj9y3Kts9R4ZYs/Gr+6N7MCaMlIFA3F1R2O5/m7K06AxfSeO5530PEERE6/WyEg3lsuyw4GHlPZHog=="; 9393 }; 9394 }; 9395 "basic-auth-2.0.1" = { 9396 name = "basic-auth"; 9397 packageName = "basic-auth"; ··· 11993 sha512 = "KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ=="; 11994 }; 11995 }; 11996 "comment-json-4.2.5" = { 11997 name = "comment-json"; 11998 packageName = "comment-json"; ··· 13038 sha512 = "x8dy3RnvYdlUcPOjkEHqozhiwzKNSq7GcPuXFbnyMOCHxX8V3OgIg/pYuabl2sbUPfIJaeAQB7PMOK8DFIdoRA=="; 13039 }; 13040 }; 13041 "css-select-4.3.0" = { 13042 name = "css-select"; 13043 packageName = "css-select"; ··· 14379 sha512 = "2xMCmOoMrdQIPHdsTawECdNPwlVFB9zGcz3kuhmBO6U3oU+UQjsue0i8ayLKpgBcm+hcXPMVSGUN9d+pvJ6+VQ=="; 14380 }; 14381 }; 14382 "dir-glob-3.0.1" = { 14383 name = "dir-glob"; 14384 packageName = "dir-glob"; ··· 14946 sha512 = "L9Qe08KWTlqYMVvMcTIvMAdl1cDUubzRNYL+WfA4bLDMHe4nemKkpmYzkznE1FwLKu0EEmy6obgQKzMJrg4x9Q=="; 14947 }; 14948 }; 14949 "ee-first-1.1.1" = { 14950 name = "ee-first"; 14951 packageName = "ee-first"; ··· 15963 sha512 = "yAcIQxtmMiB/jL32dzEp2enBeidsB7xWPLNiw3IIkpVds1P+h7qF9YwJq1yUNzp2OKXgAprs4F61ih66UsoD1A=="; 15964 }; 15965 }; 15966 "esprima-4.0.1" = { 15967 name = "esprima"; 15968 packageName = "esprima"; ··· 16224 sha512 = "adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA=="; 16225 }; 16226 }; 16227 "execa-5.1.1" = { 16228 name = "execa"; 16229 packageName = "execa"; ··· 16600 src = fetchurl { 16601 url = "https://registry.npmjs.org/fast-fifo/-/fast-fifo-1.3.2.tgz"; 16602 sha512 = "/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ=="; 16603 }; 16604 }; 16605 "fast-glob-3.3.3" = { ··· 17916 sha512 = "H7cUpwCQSiJmAHM4c/aFu6fUfrhWXW1ncyh8ftxEPMu6AiYkHw9K8br720TGPZJbk5eOH2bynjZD1yPvdDAmag=="; 17917 }; 17918 }; 17919 "gensync-1.0.0-beta.2" = { 17920 name = "gensync"; 17921 packageName = "gensync"; ··· 18456 sha512 = "wHTUcDUoZ1H5/0iVqEudYW4/kAlN5cZ3j/bXn0Dpbizl9iaUVeWSHqiOjsgk6OW2bkLclbBjzewBz6weQ1zA2Q=="; 18457 }; 18458 }; 18459 "global-dirs-3.0.1" = { 18460 name = "global-dirs"; 18461 packageName = "global-dirs"; ··· 18562 src = fetchurl { 18563 url = "https://registry.npmjs.org/globby/-/globby-14.1.0.tgz"; 18564 sha512 = "0Ia46fDOaT7k4og1PDW4YbodWWr3scS2vAr2lTbsplOt2WkKp0vQbkI9wKis/T5LV/dqPjO3bpS/z6GTJB82LA=="; 18565 }; 18566 }; 18567 "globjoin-0.1.4" = { ··· 22029 sha512 = "1P/yWsxPlDtn7QeRD+ULKQPaIaN6yF368GZ2vDfv0AL0NwpStafjWCDDdn0k8wgFMWpVAqG7oJhxHnlud42i9w=="; 22030 }; 22031 }; 22032 "jackspeak-3.4.3" = { 22033 name = "jackspeak"; 22034 packageName = "jackspeak"; ··· 22452 sha512 = "XgP0FGR77+QhUxjXkwOMkC94k3WtqEBfcnjWqhRd82qTat4SWKRE+9kUnynz/shm3I4ea2+qISvTIeGTNU7kJg=="; 22453 }; 22454 }; 22455 "json-refs-3.0.15" = { 22456 name = "json-refs"; 22457 packageName = "json-refs"; ··· 26332 sha512 = "0jWhJpD/MdhPXwPuiRkCbfYfSKp2qnn2eOc279qI7f+osl/l+prKSrvhg157zSYvx/1nmgn2NqdT6k2Z7zSH9w=="; 26333 }; 26334 }; 26335 "minimatch-9.0.5" = { 26336 name = "minimatch"; 26337 packageName = "minimatch"; ··· 26609 src = fetchurl { 26610 url = "https://registry.npmjs.org/morgan/-/morgan-1.10.0.tgz"; 26611 sha512 = "AbegBVI4sh6El+1gNwvD5YIck7nSA36weD7xvIxG4in80j/UoK8AEGaWnnz8v1GxonMCltmlNs5ZKbGvl9b1XQ=="; 26612 }; 26613 }; 26614 "mqtt-4.3.8" = { ··· 27485 sha512 = "TkCET/3rr9mUuRp+CpO7qfgT++aAxfDRaalQhwPFzI9BY/2rCDn6OfpZOVggi1AXfTPpfkTrg5f5WQx5G1uLxA=="; 27486 }; 27487 }; 27488 "node.extend-1.0.0" = { 27489 name = "node.extend"; 27490 packageName = "node.extend"; ··· 27834 src = fetchurl { 27835 url = "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz"; 27836 sha512 = "lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw=="; 27837 }; 27838 }; 27839 "npm-run-path-4.0.1" = { ··· 28700 sha512 = "LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow=="; 28701 }; 28702 }; 28703 "p-is-promise-2.1.0" = { 28704 name = "p-is-promise"; 28705 packageName = "p-is-promise"; ··· 29600 sha512 = "dUnb5dXUf+kzhC/W/F4e5/SkluXIFf5VUHolW1Eg1irn1hGWjPGdsRcvYJ1nD6lhk8Ir7VM0bHJKsYTx8Jx9OQ=="; 29601 }; 29602 }; 29603 "path-type-4.0.0" = { 29604 name = "path-type"; 29605 packageName = "path-type"; ··· 32723 sha512 = "qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw=="; 32724 }; 32725 }; 32726 "resolve-options-2.0.0" = { 32727 name = "resolve-options"; 32728 packageName = "resolve-options"; ··· 34199 sha512 = "oVTC072yJCXdkjUXAA3rRsRo1op6XfAH1/AXJQznxdwwiYTEvYB6eG9SOU8FeVaEuz+LuoPDYEY5BBMj+uRHVQ=="; 34200 }; 34201 }; 34202 "slash-2.0.0" = { 34203 name = "slash"; 34204 packageName = "slash"; ··· 36737 sha512 = "tk2G5R2KRwBd+ZN0zaEXpmzdKyOYksXwywulIX95MBODjSzMIuQnQ3m8JxgbhnL1LeVo7lqQKsYa1O3Htl7K5g=="; 36738 }; 36739 }; 36740 "tree-kill-1.2.2" = { 36741 name = "tree-kill"; 36742 packageName = "tree-kill"; ··· 36971 sha512 = "McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w=="; 36972 }; 36973 }; 36974 "tus-js-client-4.3.1" = { 36975 name = "tus-js-client"; 36976 packageName = "tus-js-client"; ··· 39248 sha512 = "xGmv9QIWs2H8obGbWg+sIPI/3/pFgj/5OWBhNzs00BkYQ9UaB2F6JJaGB/2/YOZJ3BvLXQTC4Q7muqU25QgAhA=="; 39249 }; 39250 }; 39251 "vscode-jsonrpc-5.1.0-next.1" = { 39252 name = "vscode-jsonrpc"; 39253 packageName = "vscode-jsonrpc"; ··· 39266 sha512 = "wnJA4BnEjOSyFMvjZdpiOwhSq9uDoK8e/kpRJDTaMYzwlkrhG1fwDIZI94CLsLzlCK5cIbMMtFlJlfR57Lavmg=="; 39267 }; 39268 }; 39269 "vscode-jsonrpc-8.1.0" = { 39270 name = "vscode-jsonrpc"; 39271 packageName = "vscode-jsonrpc"; ··· 39293 sha512 = "kdjOSJ2lLIn7r1rtrMbbNCHjyMPfRnowdKjBQ+mGq6NAW5QY2bEZC/khaC5OR8svbbjvLEaIXkOq45e2X9BIbQ=="; 39294 }; 39295 }; 39296 "vscode-languageserver-6.2.0-next.2" = { 39297 name = "vscode-languageserver"; 39298 packageName = "vscode-languageserver"; ··· 39311 sha512 = "60HTx5ID+fLRcgdHfmz0LDZAXYEV68fzwG0JWwEPBode9NuMYTIxuYXPg4ngO8i8+Ou0lM7y6GzaYWbiDL0drw=="; 39312 }; 39313 }; 39314 "vscode-languageserver-8.1.0" = { 39315 name = "vscode-languageserver"; 39316 packageName = "vscode-languageserver"; ··· 39320 sha512 = "eUt8f1z2N2IEUDBsKaNapkz7jl5QpskN2Y0G01T/ItMxBxw1fJwvtySGB9QMecatne8jFIWJGWI61dWjyTLQsw=="; 39321 }; 39322 }; 39323 "vscode-languageserver-protocol-3.16.0" = { 39324 name = "vscode-languageserver-protocol"; 39325 packageName = "vscode-languageserver-protocol"; ··· 39338 sha512 = "atmkGT/W6tF0cx4SaWFYtFs2UeSeC28RPiap9myv2YZTaTCFvTBEPNWrU5QRKfkyM0tbgtGo6T3UCQ8tkDpjzA=="; 39339 }; 39340 }; 39341 "vscode-languageserver-protocol-3.17.3" = { 39342 name = "vscode-languageserver-protocol"; 39343 packageName = "vscode-languageserver-protocol"; ··· 39374 sha512 = "cxWNPesCnQCcMPeenjKKsOCKQZ/L6Tv19DTRIGuLWe32lyzWhihGVJ/rcckZXJxfdKCFvRLS3fpBIsV/ZGX4zA=="; 39375 }; 39376 }; 39377 "vscode-languageserver-types-3.16.0" = { 39378 name = "vscode-languageserver-types"; 39379 packageName = "vscode-languageserver-types"; ··· 39392 sha512 = "tZFUSbyjUcrh+qQf13ALX4QDdOfDX0cVaBFgy7ktJ0VwS7AW/yRKgGPSxVqqP9OCMNPdqP57O5q47w2pEwfaUg=="; 39393 }; 39394 }; 39395 + "vscode-languageserver-types-3.17.0-next.3" = { 39396 name = "vscode-languageserver-types"; 39397 packageName = "vscode-languageserver-types"; 39398 + version = "3.17.0-next.3"; 39399 src = fetchurl { 39400 + url = "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.17.0-next.3.tgz"; 39401 + sha512 = "VQcXnhKYxUW6OiRMhG++SzmZYMJwusXknJGd+FfdOnS1yHAo734OHyR0e2eEHDlv0/oWc8RZPgx/VKSKyondVg=="; 39402 }; 39403 }; 39404 "vscode-languageserver-types-3.17.3" = { ··· 39435 src = fetchurl { 39436 url = "https://registry.npmjs.org/vscode-nls/-/vscode-nls-5.2.0.tgz"; 39437 sha512 = "RAaHx7B14ZU04EU31pT+rKz2/zSl7xMsfIZuo8pd+KZO6PXtQmpevpq3vxvWNcrGbdmhM/rr5Uw5Mz+NBfhVng=="; 39438 }; 39439 }; 39440 "vscode-uri-2.1.2" = { ··· 39554 sha512 = "d2JWLCivmZYTSIoge9MsgFCZrt571BikcWGYkjC1khllbTeDlGqZ2D8vD8E/lJa8WGWbb7Plm8/XJYV7IJHZZw=="; 39555 }; 39556 }; 39557 "web-vitals-0.2.4" = { 39558 name = "web-vitals"; 39559 packageName = "web-vitals"; ··· 40283 sha512 = "sqMMuL1rc0FmMBOzCpd0yuy9trqF2yTTVe+E9ogwCSWQCdDEtQUwrZPT6AxqtsFGRNxycgncbP/xmOOSPw5ZUw=="; 40284 }; 40285 }; 40286 "xenvar-0.5.1" = { 40287 name = "xenvar"; 40288 packageName = "xenvar"; ··· 40857 src = fetchurl { 40858 url = "https://registry.npmjs.org/zod/-/zod-3.23.8.tgz"; 40859 sha512 = "XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g=="; 40860 }; 40861 }; 40862 "zwitch-1.0.5" = { ··· 46306 bypassCache = true; 46307 reconstructLock = true; 46308 }; 46309 coc-flutter = nodeEnv.buildNodePackage { 46310 name = "coc-flutter"; 46311 packageName = "coc-flutter"; ··· 46317 buildInputs = globalBuildInputs; 46318 meta = { 46319 description = "flutter support for (Neo)vim"; 46320 license = "MIT"; 46321 }; 46322 production = true; ··· 46607 bypassCache = true; 46608 reconstructLock = true; 46609 }; 46610 coc-smartf = nodeEnv.buildNodePackage { 46611 name = "coc-smartf"; 46612 packageName = "coc-smartf"; ··· 46654 buildInputs = globalBuildInputs; 46655 meta = { 46656 description = "Ruby languageserver extension for coc.nvim, using solargraph"; 46657 license = "MIT"; 46658 }; 46659 production = true;