about summary refs log tree commit diff
path: root/pkgs/development/web/nodejs/v6.nix
blob: c15e4b39a0d3f28d557fcdf754edabe6db790d5a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{ stdenv, callPackage, lib, enableNpm ? true }:

let
  buildNodejs = callPackage ./nodejs.nix {};
in
  buildNodejs {
    inherit enableNpm;
    version = "6.15.1";
    sha256 = "1hi9h54ni7m1lmhfqvwxdny969j31mixxlxsiyl00l2bj25fbgf3";
  }