From 6602f87384eb0e6f8caf0a23eca48f896fedb8b7 Mon Sep 17 00:00:00 2001 From: Jörg Thalheim Date: Wed, 22 Apr 2020 12:26:33 +0100 Subject: nodePackages: switch to 12 Signed-off-by: Christian Albrecht --- doc/languages-frameworks/node.section.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'doc/languages-frameworks') diff --git a/doc/languages-frameworks/node.section.md b/doc/languages-frameworks/node.section.md index 4dc95fc1dd9..d7f184fca23 100644 --- a/doc/languages-frameworks/node.section.md +++ b/doc/languages-frameworks/node.section.md @@ -26,7 +26,7 @@ build system it uses. Here are some examples: After you have identified the correct system, you need to override your package expression while adding in build system as a build input. For example, `dat` -requires `node-gyp-build`, so we override its expression in `default-v10.nix`: +requires `node-gyp-build`, so we override its expression in `default-v12.nix`: ```nix dat = nodePackages.dat.override (oldAttrs: { @@ -36,14 +36,14 @@ dat = nodePackages.dat.override (oldAttrs: { To add a package from NPM to nixpkgs: - 1. Modify `pkgs/development/node-packages/node-packages-v10.json` to add, update + 1. Modify `pkgs/development/node-packages/node-packages-v12.json` to add, update or remove package entries. (Or `pkgs/development/node-packages/node-packages-v8.json` for packages depending on Node.js 8.x) 2. Run the script: `(cd pkgs/development/node-packages && ./generate.sh)`. 3. Build your new package to test your changes: `cd /path/to/nixpkgs && nix-build -A nodePackages.`. - To build against a specific Node.js version (e.g. 10.x): - `nix-build -A nodePackages_10_x.` + To build against a specific Node.js version (e.g. 12.x): + `nix-build -A nodePackages_12_x.` 4. Add and commit all modified and generated files. For more information about the generation process, consult the -- cgit 1.4.1