2020-10-20 21:16:09 +01:00
|
|
|
{ callPackage, openssl, python3, enableNpm ? true }:
|
|
|
|
|
|
|
|
let
|
|
|
|
buildNodejs = callPackage ./nodejs.nix {
|
|
|
|
inherit openssl;
|
|
|
|
python = python3;
|
|
|
|
};
|
|
|
|
in
|
|
|
|
buildNodejs {
|
|
|
|
inherit enableNpm;
|
2020-11-24 23:01:00 +00:00
|
|
|
version = "15.3.0";
|
|
|
|
sha256 = "0h625hhswwv5rpijacxiak28fy5br8kpxrihfcjdqwm3dvyvkc1v";
|
2020-10-20 21:16:09 +01:00
|
|
|
}
|