nixpkgs/pkgs/development/web/nodejs/v12.nix
2019-07-04 03:19:58 -05:00

11 lines
260 B
Nix

{ callPackage, openssl, icu, enableNpm ? true }:
let
buildNodejs = callPackage ./nodejs.nix { inherit openssl icu; };
in
buildNodejs {
inherit enableNpm;
version = "12.5.0";
sha256 = "08haqs104lw44l92bxfii18sdn7y1k07cz3p0ni9bhw7kh4vf5c7";
}