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

11 lines
260 B
Nix
Raw Normal View History

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