summary refs log tree commit diff
path: root/doc/languages-frameworks
diff options
context:
space:
mode:
authorJörg Thalheim <joerg@thalheim.io>2018-08-28 11:01:41 +0100
committerJörg Thalheim <joerg@thalheim.io>2018-08-28 11:15:07 +0100
commitbf56bc7b49486f489167ae64c8017d8c48c21a55 (patch)
tree24a3819f794d66da77c720f2a3fb736c80df4648 /doc/languages-frameworks
parent9006cd339cdfb8b45aca54d6730928cfcdfb7909 (diff)
downloadnixlib-bf56bc7b49486f489167ae64c8017d8c48c21a55.tar
nixlib-bf56bc7b49486f489167ae64c8017d8c48c21a55.tar.gz
nixlib-bf56bc7b49486f489167ae64c8017d8c48c21a55.tar.bz2
nixlib-bf56bc7b49486f489167ae64c8017d8c48c21a55.tar.lz
nixlib-bf56bc7b49486f489167ae64c8017d8c48c21a55.tar.xz
nixlib-bf56bc7b49486f489167ae64c8017d8c48c21a55.tar.zst
nixlib-bf56bc7b49486f489167ae64c8017d8c48c21a55.zip
nodePackages: 6_x -> 8_x
Diffstat (limited to 'doc/languages-frameworks')
-rw-r--r--doc/languages-frameworks/node.section.md14
1 files changed, 7 insertions, 7 deletions
diff --git a/doc/languages-frameworks/node.section.md b/doc/languages-frameworks/node.section.md
index 17a203ed12be..f6701c1ab9c4 100644
--- a/doc/languages-frameworks/node.section.md
+++ b/doc/languages-frameworks/node.section.md
@@ -14,7 +14,7 @@ project.
 
 The package set also provides support for multiple Node.js versions. The policy
 is that a new package should be added to the collection for the latest stable LTS
-release (which is currently 6.x), unless there is an explicit reason to support
+release (which is currently 8.x), unless there is an explicit reason to support
 a different release.
 
 If your package uses native addons, you need to examine what kind of native
@@ -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-v6.nix`:
+requires `node-gyp-build`, so we override its expression in `default-v8.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-v6.json` to add, update
-    or remove package entries. (Or `pkgs/development/node-packages/node-packages-v4.json`
-    for packages depending on Node.js 4.x)
+ 1. Modify `pkgs/development/node-packages/node-packages-v8.json` to add, update
+    or remove package entries. (Or `pkgs/development/node-packages/node-packages-v10.json`
+    for packages depending on Node.js 10.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.<new-or-updated-package>`.
-    To build against a specific Node.js version (e.g. 4.x):
-    `nix-build -A nodePackages_4_x.<new-or-updated-package>`
+    To build against a specific Node.js version (e.g. 10.x):
+    `nix-build -A nodePackages_10_x.<new-or-updated-package>`
  4. Add and commit all modified and generated files.
 
 For more information about the generation process, consult the