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

let
  buildNodejs = callPackage ./nodejs.nix { inherit openssl; };
in
  buildNodejs {
    inherit enableNpm;
    version = "10.18.1";
    sha256 = "0dgax08lkgjvafp6i0c5h8wqqs0w49j8mh8fqi6ppbrryhviibrr";
  }