nixpkgs/pkgs/development/web/nodejs/v12.nix
2019-05-22 21:00:00 -05:00

11 lines
264 B
Nix

{ stdenv, callPackage, lib, openssl, enableNpm ? true }:
let
buildNodejs = callPackage ./nodejs.nix { inherit openssl; };
in
buildNodejs {
inherit enableNpm;
version = "12.3.1";
sha256 = "1zhb5nq9s6cshbm6lf7qsy310fcsiy9wdr869vs6hw76zyn50axs";
}