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

11 lines
224 B
Nix
Raw Normal View History

{ callPackage, enableNpm ? true }:
2017-05-24 14:30:33 -07:00
let
buildNodejs = callPackage ./nodejs.nix {};
2017-05-24 14:30:33 -07:00
in
buildNodejs {
inherit enableNpm;
2019-05-22 20:10:48 -07:00
version = "8.16.0";
sha256 = "0h3k5y51fyysqnqb8n5v5zxga937pipag49xzx6xr9b82phfh59m";
}