71 lines
2.3 KiB
Nix
71 lines
2.3 KiB
Nix
|
{ stdenv, pkgs, buildGoPackage, fetchgit,
|
||
|
glibc, ncurses5, zlib, makeWrapper, patchelf,
|
||
|
platform-tools, composeXcodeWrapper, xcodewrapperArgs ? {}
|
||
|
}:
|
||
|
|
||
|
with stdenv;
|
||
|
|
||
|
let
|
||
|
xcodeWrapper = composeXcodeWrapper xcodewrapperArgs;
|
||
|
|
||
|
in buildGoPackage rec {
|
||
|
name = "gomobile-${version}";
|
||
|
version = "20190319-${lib.strings.substring 0 7 rev}";
|
||
|
rev = "167ebed0ec6dd457a6b24a4f61db913f0af11f70";
|
||
|
sha256 = "0lspdhikhnhbwv8v0q6fs3a0pd9sjnhkpg8z03m2dc5h6f84m38w";
|
||
|
|
||
|
goPackagePath = "golang.org/x/mobile";
|
||
|
subPackages = [ "bind" "cmd/gobind" "cmd/gomobile" ];
|
||
|
|
||
|
buildInputs = [ makeWrapper ]
|
||
|
++ lib.optional isDarwin xcodeWrapper;
|
||
|
|
||
|
# we print out the version so that we fail fast in case there's any problem running xcrun, instead of failing at the end of the build
|
||
|
preConfigure = lib.optionalString isDarwin ''
|
||
|
PATH=${lib.makeBinPath [ xcodeWrapper ]}:$PATH xcrun xcodebuild -version
|
||
|
'';
|
||
|
|
||
|
patches = [ ./ndk-search-path.patch ./resolve-nix-android-sdk.patch ]
|
||
|
++ lib.optional isDarwin [ ./ignore-nullability-error-on-ios.patch ];
|
||
|
|
||
|
postPatch = ''
|
||
|
substituteInPlace cmd/gomobile/install.go --replace "\`adb\`" "\`${platform-tools}/bin/adb\`"
|
||
|
|
||
|
echo "Creating $dev"
|
||
|
mkdir -p $dev/src/$goPackagePath
|
||
|
echo "Copying from $src"
|
||
|
cp -a $src/. $dev/src/$goPackagePath
|
||
|
'';
|
||
|
|
||
|
postInstall = ''
|
||
|
mkdir -p $out $bin/lib
|
||
|
|
||
|
ln -s ${ncurses5}/lib/libncursesw.so.5 $bin/lib/libtinfo.so.5
|
||
|
'' + lib.optionalString isDarwin ''
|
||
|
wrapProgram $bin/bin/gomobile \
|
||
|
--prefix "PATH" : "${lib.makeBinPath [ xcodeWrapper ]}" \
|
||
|
--prefix "LD_LIBRARY_PATH" : "${lib.makeLibraryPath [ ncurses5 zlib ]}:$bin/lib"
|
||
|
'' + lib.optionalString (!isDarwin) ''
|
||
|
wrapProgram $bin/bin/gomobile \
|
||
|
--prefix "LD_LIBRARY_PATH" : "${lib.makeLibraryPath [ ncurses5 zlib ]}:$bin/lib"
|
||
|
'' + ''
|
||
|
$bin/bin/gomobile init
|
||
|
'';
|
||
|
|
||
|
src = fetchgit {
|
||
|
inherit rev sha256;
|
||
|
url = "https://go.googlesource.com/mobile";
|
||
|
};
|
||
|
|
||
|
outputs = [ "bin" "dev" "out" ];
|
||
|
|
||
|
meta = {
|
||
|
description = "A tool for building and running mobile apps written in Go.";
|
||
|
longDescription = "Gomobile is a tool for building and running mobile apps written in Go.";
|
||
|
homepage = https://go.googlesource.com/mobile;
|
||
|
license = lib.licenses.bsdOriginal;
|
||
|
maintainers = with lib.maintainers; [ sheenobu pombeirp ];
|
||
|
platforms = with lib.platforms; linux ++ darwin;
|
||
|
};
|
||
|
}
|