Merge pull request #48230 from nicknovitski/fastlane-disable-update-check
fastlane: disable update check
This commit is contained in:
commit
8635fbdb55
@ -1,11 +1,27 @@
|
|||||||
{ lib, bundlerEnv, ruby }:
|
{ stdenv, bundlerEnv, ruby, makeWrapper }:
|
||||||
|
|
||||||
bundlerEnv rec {
|
stdenv.mkDerivation rec {
|
||||||
inherit ruby;
|
name = "${pname}-${version}";
|
||||||
pname = "fastlane";
|
pname = "fastlane";
|
||||||
gemdir = ./.;
|
version = (import ./gemset.nix).fastlane.version;
|
||||||
|
|
||||||
meta = with lib; {
|
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
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
description = "A tool to automate building and releasing iOS and Android apps";
|
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.";
|
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;
|
homepage = https://github.com/fastlane/fastlane;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user