summary refs log tree commit diff
path: root/pkgs/development/web/nodejs/v6.nix
blob: 2e94923441fce6917530525e261587154c92425c (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.14.3";
    sha256 = "1jbrfk875aimm65wni059rrydmhp4z0hrxskq3ci6jvykxr8gwg3";
  }