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

15 lines
380 B
Nix
Raw Normal View History

2021-01-23 17:15:07 +00:00
{ callPackage, openssl, icu, python2, lib, stdenv, enableNpm ? true }:
2018-04-26 11:01:14 +01:00
let
buildNodejs = callPackage ./nodejs.nix {
inherit openssl icu;
python = python2;
};
2018-04-26 11:01:14 +01:00
in
buildNodejs {
inherit enableNpm;
version = "10.24.0";
sha256 = "1k1srdis23782hnd1ymgczs78x9gqhv77v0am7yb54gqcspp70hm";
2021-01-23 17:15:07 +00:00
patches = lib.optional stdenv.isDarwin ./bypass-xcodebuild.diff;
2018-04-26 11:01:14 +01:00
}