Merge pull request #77291 from marsam/update-nodejs

nodejs: 12.14.0 -> 12.14.1, 13.5.0 -> 13.6.0
This commit is contained in:
Mario Rodas 2020-01-08 04:56:19 -05:00 committed by GitHub
commit 4a39b687f7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 7 deletions

View file

@ -5,8 +5,8 @@ let
in
buildNodejs {
inherit enableNpm;
version = "12.14.0";
sha256 = "0wdyz6fymkf2pfb5bf5ddcza7f2n55p9zqjvq661nr5gl9xj32h8";
version = "12.14.1";
sha256 = "1nvsivl496fgaypbk2pqqh7py29g7wsggyjlqydy1c0q4f24nyw7";
patches = stdenv.lib.optionals stdenv.isDarwin [ ./disable-libatomic-darwin.patch ];
}

View file

@ -1,12 +1,10 @@
{ stdenv, callPackage, openssl, icu, enableNpm ? true }:
{ callPackage, openssl, icu, enableNpm ? true }:
let
buildNodejs = callPackage ./nodejs.nix { inherit openssl icu; };
in
buildNodejs {
inherit enableNpm;
version = "13.5.0";
sha256 = "1ng959fm8ls222mmn2vpkw4n4jba02qigpxc8p85jxfj36dsq4ak";
patches = stdenv.lib.optionals stdenv.isDarwin [ ./disable-libatomic-darwin.patch ];
version = "13.6.0";
sha256 = "0jf9nn5i1bijmrcgjvkp37fyz63lwwmxjh7nxipn2vw2qdx6ngsm";
}