2022-06-16 17:23:12 +00:00
|
|
|
{ lib, bundlerApp, bundlerUpdateScript, makeBinaryWrapper }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2022-06-16 17:23:12 +00:00
|
|
|
bundlerApp {
|
2020-04-24 23:36:52 +00:00
|
|
|
pname = "fastlane";
|
2022-06-16 17:23:12 +00:00
|
|
|
gemdir = ./.;
|
|
|
|
exes = [ "fastlane" ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2022-06-16 17:23:12 +00:00
|
|
|
buildInputs = [ makeBinaryWrapper ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2022-06-16 17:23:12 +00:00
|
|
|
postBuild = ''
|
|
|
|
wrapProgram $out/bin/fastlane --set FASTLANE_SKIP_UPDATE_CHECK 1
|
2020-04-24 23:36:52 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
passthru.updateScript = bundlerUpdateScript "fastlane";
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2022-06-16 17:23:12 +00:00
|
|
|
description = "A tool to automate building and releasing iOS and Android apps";
|
2020-04-24 23:36:52 +00:00
|
|
|
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.";
|
2022-06-16 17:23:12 +00:00
|
|
|
homepage = "https://github.com/fastlane/fastlane";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [
|
2020-04-24 23:36:52 +00:00
|
|
|
peterromfeldhk
|
|
|
|
nicknovitski
|
2020-05-29 06:06:01 +00:00
|
|
|
shahrukh330
|
2022-06-16 17:23:12 +00:00
|
|
|
marsam
|
2020-04-24 23:36:52 +00:00
|
|
|
];
|
|
|
|
};
|
|
|
|
}
|