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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
857 B
Nix
Raw Normal View History

2022-06-01 06:20:00 +02:00
{ lib, bundlerApp, bundlerUpdateScript, makeBinaryWrapper }:
2017-10-04 16:02:23 +02:00
2022-06-01 06:20:00 +02:00
bundlerApp {
2017-10-04 16:02:23 +02:00
pname = "fastlane";
2022-06-01 06:20:00 +02:00
gemdir = ./.;
exes = [ "fastlane" ];
2017-10-04 16:02:23 +02:00
2022-06-01 06:20:00 +02:00
buildInputs = [ makeBinaryWrapper ];
2018-10-11 22:19:42 +02:00
2022-06-01 06:20:00 +02:00
postBuild = ''
wrapProgram $out/bin/fastlane --set FASTLANE_SKIP_UPDATE_CHECK 1
2018-10-11 22:19:42 +02:00
'';
passthru.updateScript = bundlerUpdateScript "fastlane";
meta = with lib; {
2022-06-01 06:20:00 +02:00
description = "A tool to automate building and releasing iOS and Android apps";
2017-10-04 16:02:23 +02: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.";
2023-09-19 06:20:00 +02:00
homepage = "https://fastlane.tools/";
2022-06-01 06:20:00 +02:00
license = licenses.mit;
maintainers = with maintainers; [
2017-10-04 16:02:23 +02:00
peterromfeldhk
nicknovitski
2020-05-26 17:14:23 +02:00
shahrukh330
2022-06-01 06:20:00 +02:00
marsam
2017-10-04 16:02:23 +02:00
];
2024-02-11 03:19:15 +01:00
mainProgram = "fastlane";
2017-10-04 16:02:23 +02:00
};
}