nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1pkgs: lib: self: super:
2
3### Deprecated aliases - for backward compatibility
4###
5### !!! NOTE !!!
6### Use `./remove-attr.py [attrname]` in this directory to remove your alias
7### from the `nodePackages` set without regenerating the entire file.
8
9let
10 # Removing recurseForDerivation prevents derivations of aliased attribute
11 # set to appear while listing all the packages available.
12 removeRecurseForDerivations =
13 alias:
14 if alias.recurseForDerivations or false then
15 lib.removeAttrs alias [ "recurseForDerivations" ]
16 else
17 alias;
18
19 # Disabling distribution prevents top-level aliases for non-recursed package
20 # sets from building on Hydra.
21 removeDistribute = alias: if lib.isDerivation alias then lib.dontDistribute alias else alias;
22
23 # Make sure that we are not shadowing something from node-packages.nix.
24 checkInPkgs =
25 n: alias:
26 if builtins.hasAttr n super then throw "Alias ${n} is still in node-packages.nix" else alias;
27
28 mapAliases =
29 aliases:
30 lib.mapAttrs (
31 n: alias: removeDistribute (removeRecurseForDerivations (checkInPkgs n alias))
32 ) aliases;
33in
34
35mapAliases {
36 "@antfu/ni" = pkgs.ni; # Added 2025-11-08
37 "@antora/cli" = pkgs.antora; # Added 2023-05-06
38 "@astrojs/language-server" = pkgs.astro-language-server; # Added 2024-02-12
39 "@babel/cli" =
40 throw "@babel/cli was removed because upstream highly suggests installing it in your project instead of globally."; # Added 2025-11-06
41 "@bitwarden/cli" = pkgs.bitwarden-cli; # added 2023-07-25
42 "@commitlint/cli" = pkgs.commitlint; # Added 2025-11-08
43 "@commitlint/config-conventional" =
44 throw "@commitlint/config-conventional has been dropped, as it is a library and your JS project should lock it instead."; # added 2024-12-16
45 "@emacs-eask/cli" = pkgs.eask; # added 2023-08-17
46 "@electron-forge/cli" =
47 throw "@electron-forge/cli was removed because upstream suggests that you install it locally in your project instead."; # Added 2025-11-06
48 "@forge/cli" = throw "@forge/cli was removed because it was broken"; # added 2023-09-20
49 "@gitbeaker/cli" = pkgs.gitbeaker-cli; # Added 2025-10-29
50 "@google/clasp" = pkgs.google-clasp; # Added 2023-05-07
51 "@maizzle/cli" = pkgs.maizzle; # added 2023-08-17
52 "@medable/mdctl-cli" = throw "@medable/mdctl-cli was removed because it was broken"; # added 2023-08-21
53 "@mermaid-js/mermaid-cli" = pkgs.mermaid-cli; # added 2023-10-01
54 "@nerdwallet/shepherd" = pkgs.shepherd; # added 2023-09-30
55 "@nestjs/cli" = pkgs.nest-cli; # Added 2023-05-06
56 "@prisma/language-server" = throw "@prisma/language-server has been removed because it was broken"; # added 2025-03-23
57 "@shopify/cli" = throw "@shopify/cli has been removed because it was broken"; # added 2025-03-12
58 "@tailwindcss/language-server" = pkgs.tailwindcss-language-server; # added 2024-01-22
59 "@uppy/companion" = pkgs.uppy-companion; # Added 2025-11-01
60 "@volar/vue-language-server" = pkgs.vue-language-server; # added 2024-06-15
61 "@vue/language-server" = pkgs.vue-language-server; # added 2024-06-15
62 "@webassemblyjs/cli-1.11.1" = pkgs.webassemblyjs-cli; # Added 2025-11-06
63 "@webassemblyjs/repl-1.11.1" = pkgs.webassemblyjs-repl; # Added 2025-11-06
64 "@webassemblyjs/wasm-strip" =
65 "@webassemblyjs/wasm-strip has been removed because it was deprecated by upstream. Consider using wabt instead"; # Added 2025-11-06
66 "@webassemblyjs/wasm-text-gen-1.11.1" = pkgs.wasm-text-gen; # Added 2025-11-06
67 "@webassemblyjs/wast-refmt-1.11.1" = pkgs.wast-refmt; # Added 2025-11-06
68 "@withgraphite/graphite-cli" = pkgs.graphite-cli; # added 2024-01-25
69 "@yaegassy/coc-nginx" = pkgs.coc-nginx; # Added 2025-11-08
70 "@zwave-js/server" = pkgs.zwave-js-server; # Added 2023-09-09
71 audiosprite = throw "'audiosprite' has been removed because it was abandoned upstream"; # Added 2025-11-14
72 inherit (pkgs) autoprefixer; # added 2024-06-25
73 inherit (pkgs) asar; # added 2023-08-26
74 inherit (pkgs) auto-changelog; # added 2024-06-25
75 inherit (pkgs) aws-azure-login; # added 2023-09-30
76 aws-cdk = pkgs.aws-cdk-cli; # Added 2025-12-23
77 awesome-lint = throw "'awesome-lint' has been removed because it was unmaintainable in nixpkgs"; # Added 2025-11-17
78 balanceofsatoshis = pkgs.balanceofsatoshis; # added 2023-07-31
79 inherit (pkgs) bash-language-server; # added 2024-06-07
80 bibtex-tidy = pkgs.bibtex-tidy; # added 2023-07-30
81 bitwarden-cli = pkgs.bitwarden-cli; # added 2023-07-25
82 bower = throw "bower was removed because it was deprecated"; # added 2025-09-17
83 inherit (pkgs) bower2nix; # added 2024-08-23
84 inherit (pkgs) btc-rpc-explorer; # added 2023-08-17
85 inherit (pkgs) carbon-now-cli; # added 2023-08-17
86 inherit (pkgs) carto; # added 2023-08-17
87 castnow = pkgs.castnow; # added 2023-07-30
88 inherit (pkgs) cdk8s-cli; # Added 2025-11-10
89 inherit (pkgs) cdktf-cli; # added 2025-10-02
90 inherit (pkgs) clean-css-cli; # added 2023-08-18
91 clipboard-cli = throw "'clipboard-cli' has been removed because it was unmaintainable in nixpkgs"; # Added 2025-11-17
92 inherit (pkgs) coc-clangd; # added 2024-06-29
93 inherit (pkgs) coc-cmake; # Added 2025-11-05
94 inherit (pkgs) coc-css; # added 2024-06-29
95 inherit (pkgs) coc-diagnostic; # added 2024-06-29
96 inherit (pkgs) coc-docker; # added 2025-10-01
97 inherit (pkgs) coc-emmet; # Added 2025-11-05
98 inherit (pkgs) coc-eslint; # Added 2025-11-05;
99 inherit (pkgs) coc-explorer; # added 2025-10-01
100 inherit (pkgs) coc-flutter; # Added 2025-11-05
101 inherit (pkgs) coc-git; # added 2025-10-01
102 inherit (pkgs) coc-haxe; # Added 2025-11-05
103 inherit (pkgs) coc-highlight; # Added 2025-11-05
104 inherit (pkgs) coc-html; # Added 2025-11-05
105 coc-imselect = throw "coc-imselect was removed because it was broken"; # added 2023-08-21
106 inherit (pkgs) coc-java; # Added 2025-11-05
107 inherit (pkgs) coc-jest; # Added 2025-11-05
108 inherit (pkgs) coc-json; # Added 2025-11-05
109 inherit (pkgs) coc-lists; # Added 2025-11-05
110 coc-ltex = throw "'coc-ltex' has been removed because it was unmaintained upstream"; # Added 2025-11-14
111 inherit (pkgs) coc-markdownlint; # Added 2025-11-05
112 coc-metals = throw "coc-metals was removed because it was deprecated upstream. vimPlugins.nvim-metals is its official replacement."; # Added 2024-10-16
113 inherit (pkgs) coc-pairs; # added 2025-11-05
114 inherit (pkgs) coc-prettier; # added 2025-11-05
115 inherit (pkgs) coc-pyright; # added 2024-07-14
116 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
117 inherit (pkgs) coc-r-lsp; # added 2025-11-05
118 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
119 inherit (pkgs) coc-rust-analyzer; # added 2025-11-05
120 inherit (pkgs) coc-sh; # added 2025-10-02
121 inherit (pkgs) coc-smartf; # Added 2025-11-05
122 inherit (pkgs) coc-snippets; # Added 2025-11-05
123 inherit (pkgs) coc-solargraph; # Added 2025-11-05
124 inherit (pkgs) coc-spell-checker; # added 2025-10-01
125 inherit (pkgs) coc-sqlfluff; # Added 2025-11-05
126 inherit (pkgs) coc-stylelint; # Added 2025-11-05
127 inherit (pkgs) coc-sumneko-lua; # Added 2025-11-05
128 inherit (pkgs) coc-tabnine; # Added 2025-11-05
129 inherit (pkgs) coc-texlab; # Added 2025-11-05
130 inherit (pkgs) coc-toml;
131 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
132 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
133 coc-ultisnips = throw "'coc-ultisnips' has been removed because it was unmaintained upstream"; # Added 2025-11-14
134 coc-vetur = throw "coc-vetur was removed because vetur was deprecated by Vue in favor of volar. Use coc-volar instead, which supports Vue 3"; # added 2025-10-01
135 inherit (pkgs) coc-vimlsp; # Added 2025-11-05
136 inherit (pkgs) coc-vimtex; # Added 2025-11-05
137 inherit (pkgs) coc-wxml; # Added 2025-11-05
138 inherit (pkgs) coc-yaml; # Added 2025-11-05
139 inherit (pkgs) coc-yank; # Added 2025-11-05
140 inherit (pkgs) code-theme-converter; # Added 2025-11-08
141 coinmon = throw "coinmon was removed since it was abandoned upstream"; # added 2024-03-19
142 coffee-script = pkgs.coffeescript; # added 2023-08-18
143 inherit (pkgs) concurrently; # added 2024-08-05
144 inherit (pkgs) configurable-http-proxy; # added 2023-08-19
145 inherit (pkgs) conventional-changelog-cli; # Added 2025-11-08
146 copy-webpack-plugin = throw "copy-webpack-plugin was removed because it is a JS library, so your project should lock it with a JS package manager instead."; # Added 2024-12-16
147 inherit (pkgs) cordova; # added 2023-08-18
148 cpy-cli = throw "'cpy-cli' has been removed because it was unmaintainable in nixpkgs"; # Added 2025-11-17
149 create-cycle-app = throw "create-cycle-app has been removed because it is unmaintained and has issues installing with recent nodejs versions."; # Added 2025-11-01
150 create-react-native-app = throw "create-react-native-app was removed because it was deprecated. Upstream suggests using a framework for React Native."; # added 2024-12-08
151 inherit (pkgs) cspell;
152 csslint = throw "'csslint' has been removed as upstream considers it abandoned."; # Addeed 2025-11-07
153 dat = throw "dat was removed because it was broken"; # added 2023-08-21
154 inherit (pkgs) degit; # added 2023-08-18
155 dhcp = throw "'dhcp' has been removed because it was unmaintained upstream"; # Added 2025-11-14
156 inherit (pkgs) diagnostic-languageserver; # added 2024-06-25
157 inherit (pkgs) diff2html-cli; # Added 2025-11-08
158 inherit (pkgs) dockerfile-language-server-nodejs; # added 2023-08-18
159 inherit (pkgs) dotenv-cli; # added 2024-06-26
160 eask = pkgs.eask; # added 2023-08-17
161 elasticdump = throw "'elasticdump' has been removed because it was unmaintained in nixpkgs"; # Added 2025-12-26
162 inherit (pkgs.elmPackages) elm-test;
163 inherit (pkgs.elmPackages) elm-review;
164 elm-oracle = throw "'elm-oracle' has been removed, since it doesn't work with modern versions of Elm."; # Added 2025-11-07
165 emoj = throw "'emoj' has been removed because it was unmaintainable in nixpkgs"; # Added 2025-11-17
166 emojione = throw "emojione was archived and abandoned upstream, so it has been removed"; # Added 2025-11-06
167 escape-string-regexp = throw "escape-string-regexp was removed because it provides no executable"; # added 2025-03-12
168 inherit (pkgs) eslint; # Added 2024-08-28
169 inherit (pkgs) eslint_d; # Added 2023-05-26
170 inherit (pkgs) eas-cli; # added 2025-01-08
171 expo-cli = throw "expo-cli was removed because it was deprecated upstream. Use `npx expo` or eas-cli instead."; # added 2024-12-02
172 fast-cli = throw "'fast-cli' has been removed because it was unmaintainable in nixpkgs"; # Added 2025-11-17
173 inherit (pkgs) fauna-shell; # Added 2025-11-27
174 inherit (pkgs) firebase-tools; # added 2023-08-18
175 inherit (pkgs) fixjson; # added 2024-06-26
176 fkill-cli = throw "'fkill-cli' has been removed because it was unmaintainable in nixpkgs"; # Added 2025-11-17
177 fleek-cli = throw "'fleek-cli' was removed because the upstream source code repo has been deleted."; # Added 2025-11-07
178 flood = pkgs.flood; # Added 2023-07-25
179 forever = throw "'forever' has been removed because it was unmaintained upstream"; # Added 2025-11-14
180 inherit (pkgs) fx; # Added 2025-11-06
181 ganache = throw "ganache was removed because it was deprecated upstream"; # added 2024-12-02
182 inherit (pkgs) gatsby-cli; # Added 2025-11-05
183 generator-code = throw "generator-code was removed because it provides no executable"; # added 2023-09-24
184 inherit (pkgs) git-run; # added 2024-06-26
185 git-ssb = throw "git-ssb was removed because it was broken"; # added 2023-08-21
186 inherit (pkgs) git-standup; # added 2024-06-26
187 inherit (pkgs) gitmoji-cli; # added 2023-09-23
188 glob = pkgs.node-glob; # added 2023-08-18
189 inherit (pkgs) get-graphql-schema; # added 2024-06-26
190 inherit (pkgs) gqlint; # added 2023-08-19
191 inherit (pkgs) gramma; # added 2024-06-26
192 grammarly-languageserver = throw "grammarly-languageserver was removed because it requires EOL Node.js 16"; # added 2024-07-15
193 inherit (pkgs) graphite-cli; # added 2024-01-25
194 inherit (pkgs) graphql-language-service-cli; # added 2025-03-17
195 inherit (pkgs) graphqurl; # added 2023-08-19
196 inherit (pkgs) grunt-cli; # added 2025-12-29
197 gtop = pkgs.gtop; # added 2023-07-31
198 gulp = self.gulp-cli; # Added 2025-11-04
199 he = throw "'he' has been removed because it was unmaintained upstream"; # Added 2025-11-14
200 hs-airdrop = throw "'hs-airdrop' has been removed because it was unmaintained upstream"; # Added 2025-11-14
201 hs-client = pkgs.hsd; # added 2023-08-20
202 inherit (pkgs) hsd; # added 2023-08-19
203 inherit (pkgs) html-minifier; # added 2023-08-19
204 inherit (pkgs) htmlhint; # added 2023-08-19
205 inherit (pkgs) http-server; # added 2024-01-20
206 hueadm = pkgs.hueadm; # added 2023-07-31
207 inherit (pkgs) hyperpotamus; # added 2023-08-19
208 ijavascript = throw "ijavascript has been removed because it was broken"; # added 2025-03-18
209 imapnotify = throw "'imapnotify' has been removed because it was unmaintained upstream"; # Added 2025-11-14
210 immich = pkgs.immich-cli; # added 2023-08-19
211 indium = throw "indium was removed because it was broken"; # added 2023-08-19
212 inliner = throw "inliner was removed because it was abandoned upstream"; # added 2024-08-23
213 inherit (pkgs) intelephense; # added 2024-08-31
214 insect = throw "insect was removed becuase it was deprecated by upstream. Use numbat instead."; # added 2024-12-02
215 ionic = throw "ionic was replaced by @ionic/cli"; # added 2023-08-19
216 inherit (pkgs) jake; # added 2023-08-19
217 inherit (pkgs) javascript-typescript-langserver; # added 2023-08-19
218 inherit (pkgs) js-beautify; # Added 2025-11-06
219 inherit (pkgs) jsdoc; # Added 2025-11-29
220 inherit (pkgs) jshint; # Added 2025-11-06
221 json = throw "'json' has been removed because it was unmaintained upstream"; # Added 2025-11-14
222 inherit (pkgs) json-diff; # Added 2025-11-07
223 jsonlint = throw "'jsonlint' has been removed because it is unmaintained upstream"; # Added 2025-11-10
224 inherit (pkgs) jsonplaceholder; # Added 2025-11-04
225 json-refs = throw "'json-refs' has been removed because it is unmaintained and has several known vulnerable dependencies"; # Added 2025-11-10
226 inherit (pkgs) json-server; # Added 2025-11-06
227 joplin = pkgs.joplin-cli; # Added 2025-11-02
228 inherit (pkgs) kaput-cli; # added 2024-12-03
229 karma = pkgs.karma-runner; # added 2023-07-29
230 inherit (pkgs) katex; # Added 2025-11-08
231 keyoxide = pkgs.keyoxide-cli; # Added 2025-10-20
232 lcov-result-merger = throw "'lcov-result-merger' has been removed because it was unmaintained within nixpkgs"; # Added 2025-12-25
233 leetcode-cli = self.vsc-leetcode-cli; # added 2023-08-31
234 inherit (pkgs) lerna; # added 2025-02-12
235 less = pkgs.lessc; # added 2024-06-15
236 less-plugin-clean-css = pkgs.lessc.plugins.clean-css; # added 2024-06-15
237 livedown = throw "'livedown' has been removed because it was unmaintained"; # Added 2025-11-10
238 live-server = throw "'live-server' has been removed because it was unmaintained upstream"; # Added 2025-11-14
239 inherit (pkgs) localtunnel; # Added 2025-11-08
240 lodash = throw "lodash was removed because it provides no executable"; # added 2025-03-18
241 lua-fmt = throw "'lua-fmt' has been removed because it has critical bugs that break formatting"; # Added 2025-11-07
242 inherit (pkgs) lv_font_conv; # added 2024-06-28
243 madoko = throw "'madoko' has been removed because it was unmaintained upstream"; # Added 2025-11-14
244 makam = throw "'makam' has been removed because it is unmaintained upstream"; # Added 2025-11-14
245 manta = pkgs.node-manta; # Added 2023-05-06
246 inherit (pkgs) markdown-link-check; # added 2024-06-28
247 markdownlint-cli = pkgs.markdownlint-cli; # added 2023-07-29
248 inherit (pkgs) markdownlint-cli2; # added 2023-08-22
249 inherit (pkgs) mathjax; # Added 2025-11-28
250 inherit (pkgs) mathjax-node-cli; # added 2023-11-02
251 mastodon-bot = throw "'mastodon-bot' has been removed because it was archived by upstream in 2021."; # Added 2025-11-07
252 mdctl-cli = self."@medable/mdctl-cli"; # added 2023-08-21
253 meat = throw "meat was removed because it was abandoned upstream."; # Added 2025-10-20
254 inherit (pkgs) mermaid-cli; # added 2023-10-01
255 meshcommander = throw "meshcommander was removed because it was abandoned upstream"; # added 2024-12-02
256 inherit (pkgs) mocha; # Added 2025-11-04
257 multi-file-swagger = throw "'multi-file-swagger' has been removed because it is unmaintained upstream"; # Added 2025-11-10
258 musescore-downloader = pkgs.dl-librescore; # added 2023-08-19
259 near-cli = throw "'near-cli' has been removed as upstream has deprecated it and archived the source code repo"; # Added 2025-11-10
260 neovim = pkgs.neovim-node-client; # added 2024-11-13
261 nijs = throw "'nijs' has been removed as it was unmaintained upstream"; # Added 2025-11-14
262 inherit (pkgs) node-gyp-build; # Added 2025-11-27
263 node-inspector = throw "node-inspector was removed because it was broken"; # added 2023-08-21
264 inherit (pkgs) node-gyp; # added 2024-08-13
265 inherit (pkgs) node-pre-gyp; # added 2024-08-05
266 inherit (pkgs) node-red; # added 2024-10-06
267 inherit (pkgs) nodemon; # added 2024-06-28
268 np = throw "'np' has been removed because it was unmaintainable in nixpkgs"; # Added 2025-11-17
269 npm = pkgs.nodejs.overrideAttrs (old: {
270 meta = old.meta // {
271 mainProgram = "npm";
272 };
273 }); # added 2024-10-04
274 inherit (pkgs) npm-check-updates; # added 2023-08-22
275 npm-merge-driver = throw "'npm-merge-driver' has been removed, since the upstream repo was archived on Aug 11, 2021"; # Added 2025-11-07
276 inherit (pkgs) nrm; # Added 2025-11-08
277 ocaml-language-server = throw "ocaml-language-server was removed because it was abandoned upstream"; # added 2023-09-04
278 orval = throw "orval has been removed because it was broken"; # added 2025-03-23
279 parcel = throw "parcel has been removed because it was broken"; # added 2025-03-12
280 parcel-bundler = self.parcel; # added 2023-09-04
281 parsoid = throw "The Javascript version of Parsoid has been deprecated by upstream and no longer works with modern MediaWiki versions"; # Added 2025-11-04
282 inherit (pkgs) patch-package; # added 2024-06-29
283 peerflix = throw "'peerflix' has been removed because it was unmaintained upstream"; # Added 2025-11-14
284 inherit (pkgs) peerflix-server; # Added 2025-11-10
285 pkg = pkgs.vercel-pkg; # added 2023-10-04
286 inherit (pkgs) pm2; # added 2024-01-22
287 inherit (pkgs) pnpm; # added 2024-06-26
288 poor-mans-t-sql-formatter-cli = throw "'poor-mans-t-sql-formatter-cli' has been removed because it was unmaintained upstream"; # Added 2025-11-14
289 inherit (pkgs) postcss; # Added 2025-12-24
290 postcss-cli = throw "postcss-cli has been removed because it was broken"; # added 2025-03-24
291 prebuild-install = throw "prebuild-install was removed because it appeared to be unmaintained upstream. See upstream's recommendations for alternatives here: https://github.com/prebuild/prebuild-install#note"; # Added 2025-12-14
292 inherit (pkgs) prettier; # added 2025-05-31
293 prettier_d_slim = pkgs.prettier-d-slim; # added 2023-09-14
294 prettier-plugin-toml = throw "prettier-plugin-toml was removed because it provides no executable"; # added 2025-03-23
295 inherit (pkgs) prisma; # added 2024-08-31
296 pscid = throw "'pscid' has been removed because it was unmaintained upstream"; # Added 2025-12-07
297 pulp = throw "'pulp' has been removed because it was unmaintained upstream"; # Added 2025-12-07
298 purescript-language-server = throw "'purescript-language-server' has been removed because it was unmaintained within nixpkgs"; # Added 2025-12-12
299 purescript-psa = throw "'purescript-psa' has been removed because it was unmaintained within nixpkgs"; # Added 2025-12-12
300 purs-tidy = throw "'purs-tidy' has been removed because it was unmaintained within nixpkgs"; # Added 2025-12-12
301 purty = throw "'purty' has been remved because it was unmaintained upstream"; # Added 2025-11-14
302 inherit (pkgs) pxder; # added 2023-09-26
303 inherit (pkgs) quicktype; # added 2023-09-09
304 react-native-cli = throw "react-native-cli was removed because it was deprecated"; # added 2023-09-25
305 react-static = throw "'react-static has been removed because of a lack of upstream maintainance"; # Converted to throw 2025-11-04
306 react-tools = throw "react-tools was removed because it was deprecated"; # added 2023-09-25
307 readability-cli = pkgs.readability-cli; # Added 2023-06-12
308 inherit (pkgs) redoc-cli; # added 2023-09-12
309 remod-cli = pkgs.remod; # added 2024-12-04
310 "reveal.js" = throw "reveal.js was removed because it provides no executable"; # added 2025-03-23
311 reveal-md = pkgs.reveal-md; # added 2023-07-31
312 rimraf = throw "rimraf was removed because it is a library, and your project should lock it instead."; # added 2025-05-28
313 rollup = throw "rollup has been removed because it was broken"; # added 2025-04-28
314 inherit (pkgs) rtlcss; # added 2023-08-29
315 s3http = throw "s3http was removed because it was abandoned upstream"; # added 2023-08-18
316 inherit (pkgs) serve; # added 2025-08-27
317 inherit (pkgs) serverless; # Added 2023-11-29
318 shout = throw "shout was removed because it was deprecated upstream in favor of thelounge."; # Added 2024-10-19
319 inherit (pkgs) sloc; # Added 2025-11-28
320 smartdc = throw "'smartdc' was removed because it was unmaintained upstream"; # Added 2025-11-14
321 inherit (pkgs) snyk; # Added 2023-08-30
322 "socket.io" = throw "socket.io was removed because it provides no executable"; # added 2025-03-23
323 speed-test = throw "'speed-test' has been removed because it was broken"; # Added 2025-11-07
324 inherit (pkgs) sql-formatter; # added 2024-06-29
325 "@squoosh/cli" = throw "@squoosh/cli was removed because it was abandoned upstream"; # added 2023-09-02
326 ssb-server = throw "ssb-server was removed because it was broken"; # added 2023-08-21
327 stackdriver-statsd-backend = throw "stackdriver-statsd-backend was removed because Stackdriver is now discontinued"; # added 2024-12-02
328 stf = throw "stf was removed because it was broken"; # added 2023-08-21
329 inherit (pkgs) stylelint; # added 2023-09-13
330 surge = pkgs.surge-cli; # Added 2023-09-08
331 inherit (pkgs) svelte-check; # Added 2025-11-10
332 inherit (pkgs) svelte-language-server; # Added 2024-05-12
333 inherit (pkgs) svgo; # added 2025-08-24
334 swagger = throw "swagger was removed because it was broken and abandoned upstream"; # added 2023-09-09
335 inherit (pkgs) tailwindcss; # added 2024-12-04
336 teck-programmer = throw "teck-programmer was removed because it was broken and unmaintained"; # added 2024-08-23
337 tedicross = throw "tedicross was removed because it was broken"; # added 2023-09-09
338 tern = throw "'tern' was removed because it has been unmaintained upstream for several years"; # Added 2025-11-07
339 inherit (pkgs) terser; # Added 2023-08-31
340 inherit (pkgs) textlint; # Added 2024-05-13
341 textlint-plugin-latex = throw "textlint-plugin-latex was removed because it is unmaintained for years. Please use textlint-plugin-latex2e instead."; # Added 2024-05-17
342 inherit (pkgs) textlint-rule-abbr-within-parentheses; # Added 2024-05-17
343 inherit (pkgs) textlint-rule-alex; # Added 2024-05-16
344 inherit (pkgs) textlint-rule-common-misspellings; # Added 2024-05-25
345 inherit (pkgs) textlint-rule-diacritics; # Added 2024-05-16
346 inherit (pkgs) textlint-rule-en-max-word-count; # Added 2024-05-17
347 inherit (pkgs) textlint-rule-max-comma; # Added 2024-05-15
348 inherit (pkgs) textlint-rule-no-start-duplicated-conjunction; # Added 2024-05-17
349 inherit (pkgs) textlint-rule-period-in-list-item; # Added 2024-05-17
350 inherit (pkgs) textlint-rule-stop-words; # Added 2024-05-17
351 inherit (pkgs) textlint-rule-terminology; # Added 2024-05-17
352 inherit (pkgs) textlint-rule-unexpanded-acronym; # Added 2024-05-17
353 inherit (pkgs) textlint-rule-write-good; # Added 2024-05-16
354 thelounge = pkgs.thelounge; # Added 2023-05-22
355 thelounge-plugin-closepms = throw "thelounge-plugin-closepms has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12
356 thelounge-plugin-giphy = throw "thelounge-plugin-giphy has been removed because thelounge moved out of nodePackages"; # added 2025-03-12
357 thelounge-plugin-shortcuts = throw "thelounge-plugin-shortcuts has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12
358 thelounge-theme-abyss = throw "thelounge-theme-abyss has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12
359 thelounge-theme-amoled = throw "thelounge-theme-amoled has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12
360 thelounge-theme-amoled-sourcecodepro = throw "thelounge-theme-amoled-sourcecodepro has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12
361 thelounge-theme-bdefault = throw "thelounge-theme-bdefault has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12
362 thelounge-theme-bmorning = throw "thelounge-theme-bmorning has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12
363 thelounge-theme-chord = throw "thelounge-theme-chord has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12
364 thelounge-theme-classic = throw "thelounge-theme-classic has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12
365 thelounge-theme-common = throw "thelounge-theme-common has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12
366 thelounge-theme-crypto = throw "thelounge-theme-crypto has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12
367 thelounge-theme-discordapp = throw "thelounge-theme-discordapp has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12
368 thelounge-theme-dracula = throw "thelounge-theme-dracula has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12
369 thelounge-theme-dracula-official = throw "thelounge-theme-dracula-official has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12
370 thelounge-theme-flat-blue = throw "thelounge-theme-flat-blue has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12
371 thelounge-theme-flat-dark = throw "thelounge-theme-flat-dark has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12
372 thelounge-theme-gruvbox = throw "thelounge-theme-gruvbox has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12
373 thelounge-theme-hexified = throw "thelounge-theme-hexified has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12
374 thelounge-theme-ion = throw "thelounge-theme-ion has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12
375 thelounge-theme-light = throw "thelounge-theme-light has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12
376 thelounge-theme-midnight = throw "thelounge-theme-midnight has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12
377 thelounge-theme-mininapse = throw "thelounge-theme-mininapse has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12
378 thelounge-theme-monokai-console = throw "thelounge-theme-monokai-console has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12
379 thelounge-theme-mortified = throw "thelounge-theme-mortified has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12
380 thelounge-theme-neuron-fork = throw "thelounge-theme-neuron-fork has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12
381 thelounge-theme-new-morning = throw "thelounge-theme-new-morning has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12
382 thelounge-theme-new-morning-compact = throw "thelounge-theme-new-morning-compact has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12
383 thelounge-theme-nologo = throw "thelounge-theme-nologo has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12
384 thelounge-theme-nord = throw "thelounge-theme-nord has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12
385 thelounge-theme-onedark = throw "thelounge-theme-onedark has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12
386 thelounge-theme-purplenight = throw "thelounge-theme-purplenight has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12
387 thelounge-theme-scoutlink = throw "thelounge-theme-scoutlink has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12
388 thelounge-theme-seraphimrp = throw "thelounge-theme-seraphimrp has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12
389 thelounge-theme-solarized = throw "thelounge-theme-solarized has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12
390 thelounge-theme-solarized-fork-monospace = throw "thelounge-theme-solarized-fork-monospace has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12
391 thelounge-theme-zenburn = throw "thelounge-theme-zenburn has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12
392 thelounge-theme-zenburn-monospace = throw "thelounge-theme-zenburn-monospace has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12
393 thelounge-theme-zenburn-sourcecodepro = throw "thelounge-theme-zenburn-sourcecodepro has been removed because thelounge was moved out of nodePackages"; # added 2025-03-12
394 three = throw "three was removed because it was no longer needed"; # Added 2023-09-08
395 inherit (pkgs) tiddlywiki; # Added 2025-11-10
396 triton = pkgs.triton; # Added 2023-05-06
397 ts-node = throw "'ts-node' was removed because it is unmaintained, and since NodeJS 22.6.0+, experimental TypeScript support is built-in to NodeJS."; # Added 2025-11-07
398 tsun = throw "'tsun' has been removed because it was unmaintained upstream"; # Added 2025-11-14
399 ttf2eot = throw "'ttf2eot' has been removed because it was unmaintained upstream"; # Added 2025-11-14
400 typescript = pkgs.typescript; # Added 2023-06-21
401 inherit (pkgs) typescript-language-server; # added 2024-02-27
402 inherit (pkgs) uglify-js; # added 2024-06-15
403 inherit (pkgs) undollar; # added 2024-06-29
404 inherit (pkgs) ungit; # added 2023-08-20
405 unified-language-server = throw "unified-language-server was removed as it is a library that should be imported within a Javascript project, not an end-user tool"; # added 2025-10-02
406 inherit (pkgs) uppy-companion; # Added 2025-11-01
407 inherit (pkgs) vega-cli; # Added 2025-12-18
408 inherit (pkgs) vega-lite; # Added 2025-11-04
409 inherit (pkgs) vim-language-server; # added 2024-06-25
410 vls = throw "vls has been deprecated by upstream as vetur is also deprecated. Upstream suggests migrating to Volar for Vue LSP tooling instead."; # added 2024-12-09
411 inherit (pkgs) vsc-leetcode-cli; # Added 2023-08-30
412 vscode-css-languageserver-bin = throw "vscode-css-languageserver-bin has been removed since the upstream repository is archived; consider using vscode-langservers-extracted instead."; # added 2024-06-26
413 vscode-html-languageserver-bin = throw "vscode-html-languageserver-bin has been removed since the upstream repository is archived; consider using vscode-langservers-extracted instead."; # added 2024-06-26
414 inherit (pkgs) vscode-json-languageserver; # added 2025-06-19
415 vscode-json-languageserver-bin = throw "vscode-json-languageserver-bin has been removed since the upstream repository is archived; consider using vscode-langservers-extracted instead."; # added 2024-06-26
416 vscode-langservers-extracted = pkgs.vscode-langservers-extracted; # Added 2023-05-27
417 vue-language-server = self.vls; # added 2023-08-20
418 vue-cli = throw "vue-cli has been removed since upstream no longer recommends using it; consider using create-vue and the new Vite-based tooling instead."; # added 2024-07-12
419 wavedrom-cli = throw "wavedrom-cli has been removed because it was unmaintained within nixpkgs"; # Added 2026-01-20
420 inherit (pkgs) web-ext; # added 2023-08-20
421 webpack = throw "'webpack' has been removed because it is a library that should be imported within a Javascript project, not an end-user tool."; # Added 2025-11-04
422 inherit (pkgs) webpack-cli; # added 2024-12-03
423 webpack-dev-server = throw "webpack-dev-server has been removed. You should install it in your JS project instead."; # added 2024-12-05
424 webtorrent-cli = throw "webtorrent-cli has been removed because it was broken"; # added 2025-03-12
425 inherit (pkgs) wrangler; # added 2024-07-01
426 wring = throw "'wring' has been removed since it has been abandoned upstream"; # Added 2025-11-07
427 inherit (pkgs) write-good; # added 2023-08-20
428 inherit (pkgs) yalc; # added 2024-06-29
429 inherit (pkgs) yaml-language-server; # added 2023-09-05
430 inherit (pkgs) yarn; # added 2024-08-13
431 inherit (pkgs) yo; # added 2023-08-20
432 zx = pkgs.zx; # added 2023-08-01
433}