depot/third_party/nixpkgs/pkgs/tools/admin/fastlane/default.nix
Default email 5c370c0b2a Project import generated by Copybara.
GitOrigin-RevId: 33d1e753c82ffc557b4a585c77de43d4c922ebb5
2024-05-15 17:35:15 +02:00

28 lines
844 B
Nix

{ lib, bundlerApp, bundlerUpdateScript, makeBinaryWrapper }:
bundlerApp {
pname = "fastlane";
gemdir = ./.;
exes = [ "fastlane" ];
buildInputs = [ makeBinaryWrapper ];
postBuild = ''
wrapProgram $out/bin/fastlane --set FASTLANE_SKIP_UPDATE_CHECK 1
'';
passthru.updateScript = bundlerUpdateScript "fastlane";
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://fastlane.tools/";
license = licenses.mit;
maintainers = with maintainers; [
peterromfeldhk
nicknovitski
shahrukh330
];
mainProgram = "fastlane";
};
}