mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-25 13:35:13 +00:00
11 lines
264 B
Nix
11 lines
264 B
Nix
{ stdenv, callPackage, lib, openssl, enableNpm ? true }:
|
|
|
|
let
|
|
buildNodejs = callPackage ./nodejs.nix { inherit openssl; };
|
|
in
|
|
buildNodejs {
|
|
inherit enableNpm;
|
|
version = "11.6.0";
|
|
sha256 = "1czrpxmk6calqn0p92rm0bv2vlgbnx6q4z7n2j8r7aw0khwbxwll";
|
|
}
|