7cbac10661
GitOrigin-RevId: a371c1071161104d329f6a85d922fd92b7cbab63
13 lines
288 B
Nix
13 lines
288 B
Nix
{ callPackage, openssl, python3, enableNpm ? true }:
|
|
|
|
let
|
|
buildNodejs = callPackage ./nodejs.nix {
|
|
inherit openssl;
|
|
python = python3;
|
|
};
|
|
in
|
|
buildNodejs {
|
|
inherit enableNpm;
|
|
version = "15.2.0";
|
|
sha256 = "022kw29sjf46mgvwciihi2cmf9sfjpqi0xih8xpk7xiwfmx02ypn";
|
|
}
|