mirror of
https://github.com/status-im/status-mobile.git
synced 2025-01-29 01:44:54 +00:00
Jakub Sokołowski
61653888f8
Possible fix fix failing `status-go` builds: https://github.com/status-im/status-react/issues/13346 Other notable upgrades: * NodeJS `16.15.1` to `16.15.0` * Yarn `1.22.18` to `1.22.19` * Clojure `1.11.1.1113` to `1.11.1.1139` Signed-off-by: Jakub Sokołowski <jakub@status.im>
73 lines
2.2 KiB
Nix
73 lines
2.2 KiB
Nix
{ lib, utils, buildGoPackage
|
|
, androidPkgs, openjdk, gomobile, xcodeWrapper, removeReferencesTo
|
|
, meta
|
|
, source
|
|
, platform ? "android"
|
|
, platformVersion ? "23"
|
|
, targets ? [ "android/arm64" "android/arm" ]
|
|
, goBuildFlags ? [ ] # Use -v or -x for debugging.
|
|
, goBuildLdFlags ? [ ]
|
|
, outputFileName ? "status-go-${source.shortRev}-${platform}.aar" }:
|
|
|
|
# Path to the file containing secret environment variables
|
|
{ secretsFile ? "" }:
|
|
|
|
let
|
|
inherit (lib) concatStringsSep optionalString optional;
|
|
in buildGoPackage {
|
|
pname = source.repo;
|
|
version = "${source.cleanVersion}-${source.shortRev}-${platform}";
|
|
|
|
inherit meta;
|
|
inherit (source) src goPackagePath;
|
|
|
|
extraSrcPaths = [ gomobile ];
|
|
nativeBuildInputs = [ gomobile removeReferencesTo ]
|
|
++ optional (platform == "android") openjdk
|
|
++ optional (platform == "ios") xcodeWrapper;
|
|
|
|
ldflags = concatStringsSep " " (goBuildLdFlags
|
|
++ lib.optionals (secretsFile != "") ["-X node.OpenseaKeyFromEnv=$OPENSEA_API_KEY"]);
|
|
|
|
ANDROID_HOME = optionalString (platform == "android") androidPkgs.sdk;
|
|
|
|
# Ensure XCode is present for iOS, instead of failing at the end of the build.
|
|
preConfigure = optionalString (platform == "ios") utils.enforceXCodeAvailable;
|
|
|
|
# If secretsFile is not set we use generate keystore.
|
|
preBuild = if (secretsFile != "") then ''
|
|
source "${secretsFile}"
|
|
'' else ''
|
|
echo "No secrets provided!"
|
|
'';
|
|
|
|
buildPhase = ''
|
|
runHook preBuild
|
|
echo -e "\nBuilding $pname for: ${concatStringsSep "," targets}"
|
|
|
|
gomobile bind \
|
|
${concatStringsSep " " goBuildFlags} \
|
|
-ldflags="$ldflags" \
|
|
-target=${concatStringsSep "," targets} \
|
|
${optionalString (platform == "android") "-androidapi=${platformVersion}"} \
|
|
${optionalString (platform == "ios") "-iosversion=${platformVersion}"} \
|
|
-o ${outputFileName} \
|
|
${source.goPackagePath}/mobile
|
|
|
|
runHook postBuild
|
|
'';
|
|
|
|
installPhase = ''
|
|
mkdir -p $out
|
|
cp -r ${outputFileName} $out/
|
|
'';
|
|
|
|
# Drop govers from disallowedReferences.
|
|
dontRenameImports = true;
|
|
# Replace hardcoded paths to go package in /nix/store.
|
|
preFixup = optionalString (platform == "ios") ''
|
|
find $out -type f -exec \
|
|
remove-references-to -t $disallowedReferences '{}' + || true
|
|
'';
|
|
}
|