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

13 lines
364 B
Nix
Raw Normal View History

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