nodejs-13_x: 13.5.0 -> 13.6.0

Changelog: https://github.com/nodejs/node/releases/tag/v13.6.0
This commit is contained in:
Mario Rodas 2020-01-07 18:01:00 -05:00
parent 23f2ebf4cc
commit 63cb827672
No known key found for this signature in database
GPG Key ID: 4C4BEFD7B18DC5E8

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";
}