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

11 lines
260 B
Nix
Raw Normal View History

{ callPackage, openssl, icu, enableNpm ? true }:
2019-04-24 00:33:00 +03:00
let
2019-06-03 00:34:27 +03:00
buildNodejs = callPackage ./nodejs.nix { inherit openssl icu; };
2019-04-24 00:33:00 +03:00
in
buildNodejs {
inherit enableNpm;
version = "12.5.0";
sha256 = "08haqs104lw44l92bxfii18sdn7y1k07cz3p0ni9bhw7kh4vf5c7";
2019-04-24 00:33:00 +03:00
}