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

11 lines
252 B
Nix
Raw Normal View History

{ callPackage, openssl, enableNpm ? true }:
2018-04-26 10:01:14 +00:00
let
buildNodejs = callPackage ./nodejs.nix { inherit openssl; };
in
buildNodejs {
inherit enableNpm;
version = "10.17.0";
sha256 = "13n5cvb340ba7vwm8il7bjrmpz89h6cibhk9rc3kq9ymdgbnf9j1";
2018-04-26 10:01:14 +00:00
}