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

14 lines
299 B
Nix
Raw Normal View History

{ callPackage, openssl, icu, python2, enableNpm ? true }:
2018-04-26 12:01:14 +02:00
let
buildNodejs = callPackage ./nodejs.nix {
inherit openssl icu;
python = python2;
};
2018-04-26 12:01:14 +02:00
in
buildNodejs {
inherit enableNpm;
version = "10.22.0";
sha256 = "1nz18fa550li10r0kzsm28c2rvvq61nq8bqdygip0rmvbi2paxg0";
2018-04-26 12:01:14 +02:00
}