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

11 lines
260 B
Nix
Raw Normal View History

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