From a1288e86284c1e6be612f907c8dea79b8f57ef7a Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Wed, 20 Oct 2021 04:20:00 +0000 Subject: [PATCH 1/2] nodejs-16_x: 16.11.1 -> 16.12.0 https://github.com/nodejs/node/releases/tag/v16.12.0 --- pkgs/development/web/nodejs/v16.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/web/nodejs/v16.nix b/pkgs/development/web/nodejs/v16.nix index 698108a42b60..9cbe093c7a39 100644 --- a/pkgs/development/web/nodejs/v16.nix +++ b/pkgs/development/web/nodejs/v16.nix @@ -8,7 +8,7 @@ let in buildNodejs { inherit enableNpm; - version = "16.11.1"; - sha256 = "0y32mdv8zs35la2bny8d9rxjvj1vr8z079ji1g6ajc2yw96pyn37"; + version = "16.12.0"; + sha256 = "1b3bschfa7946jwyqp3nmbdv7ap3rl4p7h50b9bac08981m0lqjz"; patches = [ ./disable-darwin-v8-system-instrumentation.patch ]; } From 36fa146b65620582660683ce5978ce4b17045bda Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Wed, 20 Oct 2021 04:20:00 +0000 Subject: [PATCH 2/2] nodejs: use github release url in meta The release file is huge, hence making it difficult to read in the browser. --- pkgs/development/web/nodejs/nodejs.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/web/nodejs/nodejs.nix b/pkgs/development/web/nodejs/nodejs.nix index 86332bf7b69c..7b88b0f8fd37 100644 --- a/pkgs/development/web/nodejs/nodejs.nix +++ b/pkgs/development/web/nodejs/nodejs.nix @@ -139,7 +139,7 @@ in meta = { description = "Event-driven I/O framework for the V8 JavaScript engine"; homepage = "https://nodejs.org"; - changelog = "https://github.com/nodejs/node/blob/v${version}/doc/changelogs/CHANGELOG_V${majorVersion}.md#${version}"; + changelog = "https://github.com/nodejs/node/releases/tag/v${version}"; license = licenses.mit; maintainers = with maintainers; [ goibhniu gilligan cko marsam ]; platforms = platforms.linux ++ platforms.darwin;