nixpkgs/pkgs/development/web/nodejs/v10.nix

11 lines
252 B
Nix
Raw Normal View History

{ callPackage, openssl, enableNpm ? true }:
2018-04-26 03:01:14 -07:00
let
buildNodejs = callPackage ./nodejs.nix { inherit openssl; };
in
buildNodejs {
inherit enableNpm;
version = "10.20.0";
sha256 = "0cvjwnl0wkcsyw3kannbdv01s235wrnp11n2s6swzjx95gpichfi";
2018-04-26 03:01:14 -07:00
}