about summary refs log tree commit diff
path: root/pkgs/development/web
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2021-10-20 04:20:00 +0000
committerMario Rodas <marsam@users.noreply.github.com>2021-10-20 04:20:00 +0000
commit36fa146b65620582660683ce5978ce4b17045bda (patch)
tree56645aedb13280fd12c3771c5c1dbe965e8682a1 /pkgs/development/web
parenta1288e86284c1e6be612f907c8dea79b8f57ef7a (diff)
nodejs: use github release url in meta
The release file is huge, hence making it difficult to read in the
browser.
Diffstat (limited to 'pkgs/development/web')
-rw-r--r--pkgs/development/web/nodejs/nodejs.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/web/nodejs/nodejs.nix b/pkgs/development/web/nodejs/nodejs.nix
index 86332bf7b69c0..7b88b0f8fd372 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;