nixpkgs/pkgs/tools/admin/fastlane/default.nix

36 lines
1 KiB
Nix
Raw Normal View History

{ stdenv, bundlerEnv, ruby, bundlerUpdateScript, makeWrapper }:
2017-10-04 14:02:23 +00:00
2018-10-11 20:19:42 +00:00
stdenv.mkDerivation rec {
2017-10-04 14:02:23 +00:00
pname = "fastlane";
2018-10-11 20:19:42 +00:00
version = (import ./gemset.nix).fastlane.version;
2017-10-04 14:02:23 +00:00
2018-10-11 20:19:42 +00:00
nativeBuildInputs = [ makeWrapper ];
env = bundlerEnv {
name = "${pname}-${version}-gems";
2018-10-11 20:19:42 +00:00
inherit pname ruby;
gemdir = ./.;
};
phases = [ "installPhase" ];
installPhase = ''
mkdir -p $out/bin
makeWrapper ${env}/bin/fastlane $out/bin/fastlane \
--set FASTLANE_SKIP_UPDATE_CHECK 1
'';
passthru.updateScript = bundlerUpdateScript "fastlane";
2018-10-11 20:19:42 +00:00
meta = with stdenv.lib; {
2017-10-04 14:02:23 +00:00
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
nicknovitski
2017-10-04 14:02:23 +00:00
];
};
}