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

13 lines
359 B
Nix
Raw Normal View History

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