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

let
  buildNodejs = callPackage ./nodejs.nix { inherit openssl; };
in
  buildNodejs {
    inherit enableNpm;
    version = "10.11.0";
    sha256 = "16wfgwnb2yd6y608svj2fizdq3sid44m0wqn4swkvclxb71444mr";
  }