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

13 lines
359 B
Nix
Raw Normal View History

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