mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-16 10:43:27 +00:00
11 lines
265 B
Nix
11 lines
265 B
Nix
{ stdenv, callPackage, lib, openssl, enableNpm ? true }:
|
|
|
|
let
|
|
buildNodejs = callPackage ./nodejs.nix { inherit openssl; };
|
|
in
|
|
buildNodejs {
|
|
inherit enableNpm;
|
|
version = "10.11.0";
|
|
sha256 = "16wfgwnb2yd6y608svj2fizdq3sid44m0wqn4swkvclxb71444mr";
|
|
}
|