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

11 lines
264 B
Nix
Raw Normal View History

2019-04-23 23:33:00 +02:00
{ stdenv, callPackage, lib, openssl, enableNpm ? true }:
let
buildNodejs = callPackage ./nodejs.nix { inherit openssl; };
in
buildNodejs {
inherit enableNpm;
2019-05-23 04:00:00 +02:00
version = "12.3.1";
sha256 = "1zhb5nq9s6cshbm6lf7qsy310fcsiy9wdr869vs6hw76zyn50axs";
2019-04-23 23:33:00 +02:00
}