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

11 lines
273 B
Nix
Raw Normal View History

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