1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-11 15:15:36 +00:00
nixpkgs/pkgs/development/web/nodejs/v10.nix

11 lines
265 B
Nix
Raw Normal View History

2018-04-26 11:01:14 +01:00
{ stdenv, callPackage, lib, openssl, enableNpm ? true }:
let
buildNodejs = callPackage ./nodejs.nix { inherit openssl; };
in
buildNodejs {
inherit enableNpm;
2019-01-03 08:03:00 +00:00
version = "10.15.0";
sha256 = "0gnygq4n7aar4jrynnnslxhlrlrml9f1n9passvj2fxqfi6b6ykr";
2018-04-26 11:01:14 +01:00
}