2020-05-18 10:15:49 +00:00
|
|
|
# This derivation patches Node.js dependencies by
|
|
|
|
# taking the result of yarn2nix and symlinking what is fine,
|
|
|
|
# and copying and modifying what needs to be adjusted.
|
2020-05-07 10:21:39 +00:00
|
|
|
|
2020-05-18 10:15:49 +00:00
|
|
|
{ stdenv, deps, nodejs, patchMavenSources }:
|
2020-05-07 10:21:39 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2020-05-18 10:15:49 +00:00
|
|
|
name = "${deps.nodejs.name}-patched";
|
2020-12-02 12:40:23 +00:00
|
|
|
phases = [
|
|
|
|
"unpackPhase"
|
|
|
|
"patchGradlePhase"
|
|
|
|
"patchBuildIdPhase"
|
2023-12-11 15:52:23 +00:00
|
|
|
"patchKeyChainPhase"
|
2023-12-07 10:06:08 +00:00
|
|
|
"patchGlogPhase"
|
2023-12-11 15:52:23 +00:00
|
|
|
"patchJestPhase"
|
|
|
|
"installPhase"
|
2020-12-02 12:40:23 +00:00
|
|
|
];
|
2020-05-07 10:21:39 +00:00
|
|
|
|
|
|
|
# First symlink all modules as is
|
|
|
|
# WARNING: Metro has issues when dealing with symlinks!
|
|
|
|
unpackPhase = ''
|
|
|
|
mkdir -p ./node_modules/
|
2020-05-18 10:15:49 +00:00
|
|
|
for module in $(ls ${deps.nodejs}/node_modules); do
|
|
|
|
ln -s ${deps.nodejs}/node_modules/$module ./node_modules/
|
2020-05-07 10:21:39 +00:00
|
|
|
done
|
2020-05-18 10:15:49 +00:00
|
|
|
cp -r ${deps.nodejs}/node_modules/.bin ./node_modules/
|
2020-05-07 10:21:39 +00:00
|
|
|
'';
|
|
|
|
|
2020-12-02 12:40:23 +00:00
|
|
|
# Patch build.gradle files in 'react-native-*' dependencies to replace
|
|
|
|
# maven and google central repositories with our own local directories.
|
|
|
|
# This prevents the builder from downloading Maven artifacts
|
|
|
|
patchGradlePhase = ''
|
2023-03-03 16:15:38 +00:00
|
|
|
gradleConfigs=$(
|
|
|
|
find -L ./node_modules \
|
|
|
|
-name build.gradle -or \
|
|
|
|
-name build.gradle.kts -or \
|
|
|
|
-name settings.gradle -or \
|
|
|
|
-name settings.gradle.kts
|
|
|
|
)
|
|
|
|
for modBuildGradle in $gradleConfigs; do
|
2020-05-07 10:21:39 +00:00
|
|
|
relativeToNode=''${modBuildGradle#*node_modules/}
|
|
|
|
moduleName=''${relativeToNode%%/*}
|
|
|
|
if [[ -L ./node_modules/$moduleName ]]; then
|
|
|
|
unlink ./node_modules/$moduleName
|
2020-05-18 10:15:49 +00:00
|
|
|
cp -r ${deps.nodejs}/node_modules/$moduleName ./node_modules/
|
2020-05-15 16:36:03 +00:00
|
|
|
chmod u+w -R ./node_modules/$moduleName
|
2020-05-07 10:21:39 +00:00
|
|
|
fi
|
2020-05-19 18:15:41 +00:00
|
|
|
${patchMavenSources} $modBuildGradle
|
2020-05-07 10:21:39 +00:00
|
|
|
done
|
2020-12-02 12:40:23 +00:00
|
|
|
'';
|
2023-12-11 15:52:23 +00:00
|
|
|
|
2020-12-02 12:40:23 +00:00
|
|
|
# Do not add a BuildId to the generated libraries, for reproducibility
|
|
|
|
patchBuildIdPhase = ''
|
2023-12-11 15:52:23 +00:00
|
|
|
substituteInPlace ./node_modules/react-native/ReactAndroid/src/main/jni/CMakeLists.txt --replace \
|
|
|
|
'-Wl,--build-id' \
|
|
|
|
'-Wl,--build-id=none'
|
2020-12-02 12:40:23 +00:00
|
|
|
'';
|
2023-12-11 15:52:23 +00:00
|
|
|
|
|
|
|
# Remove when we upgrade jest to 29
|
|
|
|
patchJestPhase = ''
|
|
|
|
substituteInPlace ./node_modules/react-native/jest/setup.js --replace \
|
|
|
|
'jest.now()' \
|
|
|
|
'Date.now'
|
2020-05-07 10:21:39 +00:00
|
|
|
'';
|
2023-06-14 01:47:41 +00:00
|
|
|
|
2020-05-07 10:21:39 +00:00
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out
|
|
|
|
cp -R node_modules $out/
|
|
|
|
'';
|
|
|
|
|
2023-12-11 15:52:23 +00:00
|
|
|
# Remove gradle-test-logger-plugin:
|
|
|
|
# https://github.com/oblador/react-native-keychain/issues/595
|
|
|
|
# TODO: remove this patch when we this library fixes above issue
|
|
|
|
patchKeyChainPhase = ''
|
|
|
|
sed -i -e '/classpath/d' \
|
|
|
|
-e '/apply plugin: "com\.adarshr\.test-logger"/d' \
|
|
|
|
./node_modules/react-native-keychain/android/build.gradle
|
2023-04-12 09:55:19 +00:00
|
|
|
'';
|
|
|
|
|
2023-12-07 10:06:08 +00:00
|
|
|
# Fix pod issue after upgrading to MacOS Sonoma and Xcode 15
|
|
|
|
# https://github.com/status-im/status-mobile/issues/17682
|
|
|
|
patchGlogPhase = ''
|
|
|
|
substituteInPlace ./node_modules/react-native/scripts/ios-configure-glog.sh \
|
|
|
|
--replace 'export CC="' '#export CC="' \
|
|
|
|
--replace 'export CXX="' '#export CXX="'
|
|
|
|
'';
|
|
|
|
|
2020-05-07 10:21:39 +00:00
|
|
|
# The ELF types are incompatible with the host platform, so let's not even try
|
|
|
|
# TODO: Use Android NDK to strip binaries manually
|
|
|
|
dontPatchELF = true;
|
|
|
|
dontStripHost = true;
|
|
|
|
|
|
|
|
# Take whole sources into consideration when calculating sha
|
|
|
|
outputHashMode = "recursive";
|
|
|
|
outputHashAlgo = "sha256";
|
|
|
|
}
|