mirror of
https://github.com/status-im/status-react.git
synced 2025-01-10 19:16:59 +00:00
Jakub Sokołowski
0652d18653
Notable software upgrades: - Go `1.14.13` to `1.14.15` - Clojure `1.10.1.763` to `1.10.3.855` - NodeJS `12.20.1` to `12.22.1` - Git `2.29.2` to `2.31.1` - CMake `3.10.2` to `3.18.1` - Curl `7.74.0` to `7.76.1` - Android NDK `21.3.6528147` to `22.1.7171670` - Android Platform Tools `30.0.5` to `31.0.2` Signed-off-by: Jakub Sokołowski <jakub@status.im>
43 lines
1.2 KiB
Nix
43 lines
1.2 KiB
Nix
{ stdenv, lib, bundlerEnv, ruby, makeWrapper }:
|
|
|
|
let
|
|
fastlane = stdenv.mkDerivation rec {
|
|
name = "${pname}-${version}";
|
|
pname = "fastlane";
|
|
version = (import ./gemset.nix).fastlane.version;
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
env = bundlerEnv {
|
|
name = "${name}-gems";
|
|
inherit pname ruby;
|
|
gemdir = ./.;
|
|
};
|
|
|
|
phases = [ "installPhase" ];
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
makeWrapper ${env}/bin/fastlane $out/bin/fastlane \
|
|
--set FASTLANE_SKIP_UPDATE_CHECK 1
|
|
'';
|
|
|
|
shellHook = ''
|
|
[ -z "$STATUS_REACT_HOME" ] && echo "STATUS_REACT_HOME is empty!" && exit 1
|
|
|
|
export FASTLANE_PLUGINFILE_PATH=$STATUS_REACT_HOME/fastlane/Pluginfile
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "A tool to automate building and releasing iOS and Android apps";
|
|
longDescription = "fastlane is a tool for iOS and Android developers to automate tedious tasks like generating screenshots, dealing with provisioning profiles, and releasing your application.";
|
|
homepage = https://github.com/fastlane/fastlane;
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [
|
|
peterromfeldhk
|
|
];
|
|
};
|
|
};
|
|
|
|
in fastlane
|