nixpkgs/pkgs/development/web/nodejs/v12.nix

13 lines
359 B
Nix
Raw Normal View History

2019-09-18 10:20:00 +01:00
{ stdenv, callPackage, openssl, icu, enableNpm ? true }:
2019-04-23 22:33:00 +01:00
let
2019-06-02 22:34:27 +01:00
buildNodejs = callPackage ./nodejs.nix { inherit openssl icu; };
2019-04-23 22:33:00 +01:00
in
buildNodejs {
inherit enableNpm;
version = "12.15.0";
sha256 = "06x8sma4rxbw0mxj0l4438lfpv9abxmnw2ibamq1acng1jl4zyyj";
2019-09-18 10:20:00 +01:00
patches = stdenv.lib.optionals stdenv.isDarwin [ ./disable-libatomic-darwin.patch ];
2019-04-23 22:33:00 +01:00
}