3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/web/nodejs/v10.nix

11 lines
264 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;
version = "10.9.0";
sha256 = "00hdachbmcf9pyd1iksprsi5mddwp6z59mb3lr81z8ynfbmzhzni";
2018-04-26 11:01:14 +01:00
}