mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-13 08:23:25 +00:00
11 lines
237 B
Nix
11 lines
237 B
Nix
{ stdenv, callPackage, lib, enableNpm ? true }:
|
|
|
|
let
|
|
buildNodejs = callPackage ./nodejs.nix {};
|
|
in
|
|
buildNodejs {
|
|
inherit enableNpm;
|
|
version = "6.15.1";
|
|
sha256 = "1hi9h54ni7m1lmhfqvwxdny969j31mixxlxsiyl00l2bj25fbgf3";
|
|
}
|