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

14 lines
289 B
Nix
Raw Normal View History

2020-07-19 09:21:00 +00:00
{ callPackage, openssl, python3, enableNpm ? true }:
let
buildNodejs = callPackage ./nodejs.nix {
inherit openssl;
python = python3;
};
in
buildNodejs {
inherit enableNpm;
version = "14.15.1";
sha256 = "1g61vqsgq3jsipw2fckj68i4a4pi1iz1kbw7mlw8jmzp8rl46q81";
}