1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/development/web/nodejs/v10.nix

11 lines
252 B
Nix
Raw Normal View History

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