2020-04-15 11:12:56 +00:00
|
|
|
{ stdenv, callPackage, utils, fetchgit, buildGoPackage,
|
|
|
|
ncurses5, zlib, makeWrapper, patchelf, platform-tools, xcodeWrapper
|
2019-03-25 16:35:01 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
let
|
2019-06-04 16:50:29 +00:00
|
|
|
inherit (stdenv) isDarwin;
|
|
|
|
inherit (stdenv.lib) optional optionalString strings;
|
2019-03-25 16:35:01 +00:00
|
|
|
in buildGoPackage rec {
|
2019-07-19 18:40:03 +00:00
|
|
|
pname = "gomobile";
|
2020-04-15 11:12:56 +00:00
|
|
|
version = "20200329-${strings.substring 0 7 rev}";
|
|
|
|
rev = "4c31acba000778d337c0e4f32091cc923b3363d2";
|
|
|
|
sha256 = "0k42pn6fq886k9hn85wbgg4h4y1myj7niw0746sn50zfbrmy3s2c";
|
2019-03-25 16:35:01 +00:00
|
|
|
|
|
|
|
goPackagePath = "golang.org/x/mobile";
|
|
|
|
subPackages = [ "bind" "cmd/gobind" "cmd/gomobile" ];
|
2020-04-15 11:12:56 +00:00
|
|
|
goDeps = ./deps.nix;
|
2019-03-25 16:35:01 +00:00
|
|
|
|
|
|
|
buildInputs = [ makeWrapper ]
|
2019-06-04 16:50:29 +00:00
|
|
|
++ optional isDarwin xcodeWrapper;
|
2019-03-25 16:35:01 +00:00
|
|
|
|
2019-05-09 16:16:15 +00:00
|
|
|
# Ensure XCode and the iPhone SDK are present, instead of failing at the end of the build
|
2019-06-04 16:50:29 +00:00
|
|
|
preConfigure = optionalString isDarwin utils.enforceiPhoneSDKAvailable;
|
2019-03-25 16:35:01 +00:00
|
|
|
|
2019-08-01 17:28:08 +00:00
|
|
|
patches = [ ./resolve-nix-android-sdk.patch ];
|
2019-03-25 16:35:01 +00:00
|
|
|
|
2019-07-18 11:52:17 +00:00
|
|
|
postPatch = ''
|
2019-11-29 10:20:08 +00:00
|
|
|
substituteInPlace cmd/gomobile/install.go --replace "\`adb\`" "\`${platform-tools}/bin/adb\`"
|
2019-07-18 11:52:17 +00:00
|
|
|
|
2019-05-14 17:29:36 +00:00
|
|
|
# Prevent a non-deterministic temporary directory from polluting the resulting object files
|
2019-07-29 11:42:34 +00:00
|
|
|
substituteInPlace cmd/gomobile/env.go \
|
|
|
|
--replace \
|
|
|
|
'tmpdir, err = ioutil.TempDir("", "gomobile-work-")' \
|
|
|
|
"tmpdir = filepath.Join(os.Getenv(\"NIX_BUILD_TOP\"), \"gomobile-work\")" \
|
2019-05-14 17:29:36 +00:00
|
|
|
--replace '"io/ioutil"' ""
|
2019-07-29 11:42:34 +00:00
|
|
|
substituteInPlace cmd/gomobile/init.go \
|
|
|
|
--replace \
|
|
|
|
'tmpdir, err = ioutil.TempDir(gomobilepath, "work-")' \
|
|
|
|
"tmpdir = filepath.Join(os.Getenv(\"NIX_BUILD_TOP\"), \"work\")"
|
2019-05-14 17:29:36 +00:00
|
|
|
|
2019-03-25 16:35:01 +00:00
|
|
|
echo "Creating $dev"
|
|
|
|
mkdir -p $dev/src/$goPackagePath
|
|
|
|
echo "Copying from $src"
|
|
|
|
cp -a $src/. $dev/src/$goPackagePath
|
|
|
|
'';
|
|
|
|
|
2019-05-14 17:29:36 +00:00
|
|
|
preBuild = ''
|
2019-07-18 11:52:17 +00:00
|
|
|
mkdir $NIX_BUILD_TOP/gomobile-work $NIX_BUILD_TOP/work
|
2019-05-14 17:29:36 +00:00
|
|
|
'';
|
|
|
|
|
2019-06-04 16:50:29 +00:00
|
|
|
postInstall =
|
|
|
|
let
|
|
|
|
inherit (stdenv.lib) makeBinPath makeLibraryPath;
|
|
|
|
in ''
|
2019-03-25 16:35:01 +00:00
|
|
|
mkdir -p $out $bin/lib
|
|
|
|
|
|
|
|
ln -s ${ncurses5}/lib/libncursesw.so.5 $bin/lib/libtinfo.so.5
|
2019-07-18 11:52:17 +00:00
|
|
|
${if isDarwin then ''
|
2019-03-25 16:35:01 +00:00
|
|
|
wrapProgram $bin/bin/gomobile \
|
2019-06-04 16:50:29 +00:00
|
|
|
--prefix "PATH" : "${makeBinPath [ xcodeWrapper ]}" \
|
|
|
|
--prefix "LD_LIBRARY_PATH" : "${makeLibraryPath [ ncurses5 zlib ]}:$bin/lib"
|
2019-04-03 11:06:42 +00:00
|
|
|
'' else ''
|
2019-03-25 16:35:01 +00:00
|
|
|
wrapProgram $bin/bin/gomobile \
|
2019-06-04 16:50:29 +00:00
|
|
|
--prefix "LD_LIBRARY_PATH" : "${makeLibraryPath [ ncurses5 zlib ]}:$bin/lib"
|
2019-07-18 11:52:17 +00:00
|
|
|
''}
|
2019-03-25 16:35:01 +00:00
|
|
|
$bin/bin/gomobile init
|
|
|
|
'';
|
|
|
|
|
|
|
|
src = fetchgit {
|
|
|
|
inherit rev sha256;
|
2020-04-15 11:12:56 +00:00
|
|
|
name = "gomobile";
|
2019-03-25 16:35:01 +00:00
|
|
|
url = "https://go.googlesource.com/mobile";
|
|
|
|
};
|
|
|
|
|
|
|
|
outputs = [ "bin" "dev" "out" ];
|
|
|
|
|
2019-06-04 16:50:29 +00:00
|
|
|
meta = with stdenv.lib; {
|
2019-03-25 16:35:01 +00:00
|
|
|
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;
|
2019-06-04 16:50:29 +00:00
|
|
|
license = licenses.bsdOriginal;
|
|
|
|
maintainers = with maintainers; [ sheenobu pombeirp ];
|
|
|
|
platforms = with platforms; linux ++ darwin;
|
2019-03-25 16:35:01 +00:00
|
|
|
};
|
|
|
|
}
|