summary refs log tree commit diff
path: root/pkgs/development/web/nodejs/v10.nix
blob: ee88b2313662b80dfe58b039d3348a240d214b61 (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.9.0";
    sha256 = "00hdachbmcf9pyd1iksprsi5mddwp6z59mb3lr81z8ynfbmzhzni";
  }