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

11 lines
261 B
Nix
Raw Normal View History

{ callPackage, openssl, icu, enableNpm ? true }:
2019-04-23 22:33:00 +01:00
let
2019-06-02 22:34:27 +01:00
buildNodejs = callPackage ./nodejs.nix { inherit openssl icu; };
2019-04-23 22:33:00 +01:00
in
buildNodejs {
inherit enableNpm;
version = "12.16.0";
sha256 = "09grij355z210mkzkzarb6gwz8b02lnaxzdll1249kiz8wvhdjdq";
2019-04-23 22:33:00 +01:00
}