blob: 5743868d5d969e4c7abd3a5981bdb485e9ff2a60 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
{ callPackage, openssl, enableNpm ? true }:
let
buildNodejs = callPackage ./nodejs.nix { inherit openssl; };
in
buildNodejs {
inherit enableNpm;
version = "10.16.0";
sha256 = "0236jlb1hxhzqjlmmlxipcycrndiq92c8434iyy7zshh3n4pzqqq";
}
|