mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 08:59:32 +03:00
e095d22de7
Changelog: - https://github.com/nodejs/node/releases/tag/v13.4.0 - https://github.com/nodejs/node/releases/tag/v13.5.0
13 lines
358 B
Nix
13 lines
358 B
Nix
{ stdenv, 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 ];
|
|
}
|