mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-02 10:14:09 +00:00
Merge pull request #299236 from philiptaron/issue-208242/node-packages-part-1
Avoid top-level `with ...;` in `pkgs/development/node-packages`
This commit is contained in:
commit
c6b83ffac3
@ -6,8 +6,6 @@ pkgs: lib: self: super:
|
||||
### Use `./remove-attr.py [attrname]` in this directory to remove your alias
|
||||
### from the `nodePackages` set without regenerating the entire file.
|
||||
|
||||
with self;
|
||||
|
||||
let
|
||||
# Removing recurseForDerivation prevents derivations of aliased attribute
|
||||
# set to appear while listing all the packages available.
|
||||
@ -113,7 +111,7 @@ mapAliases {
|
||||
inherit (pkgs) jake; # added 2023-08-19
|
||||
inherit (pkgs) javascript-typescript-langserver; # added 2023-08-19
|
||||
karma = pkgs.karma-runner; # added 2023-07-29
|
||||
leetcode-cli = vsc-leetcode-cli; # added 2023-08-31
|
||||
leetcode-cli = self.vsc-leetcode-cli; # added 2023-08-31
|
||||
inherit (pkgs) lv_font_conv; # added 2024-06-28
|
||||
manta = pkgs.node-manta; # Added 2023-05-06
|
||||
inherit (pkgs) markdown-link-check; # added 2024-06-28
|
||||
@ -128,7 +126,7 @@ mapAliases {
|
||||
inherit (pkgs) nodemon; # added 2024-06-28
|
||||
inherit (pkgs) npm-check-updates; # added 2023-08-22
|
||||
ocaml-language-server = throw "ocaml-language-server was removed because it was abandoned upstream"; # added 2023-09-04
|
||||
parcel-bundler = parcel; # added 2023-09-04
|
||||
parcel-bundler = self.parcel; # added 2023-09-04
|
||||
pkg = pkgs.vercel-pkg; # added 2023-10-04
|
||||
inherit (pkgs) pm2; # added 2024-01-22
|
||||
inherit (pkgs) pnpm; # added 2024-06-26
|
||||
|
Loading…
Reference in New Issue
Block a user