summary refs log tree commit diff
path: root/pkgs/tools/admin/fastlane/default.nix
blob: b9008c919bf366a399278405baaa4b3adfa0cef7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ lib, bundlerEnv, ruby }:

bundlerEnv rec {
  inherit ruby;
  pname = "fastlane";
  gemdir = ./.;

  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://github.com/fastlane/fastlane;
    license         = licenses.mit;
    maintainers     = with maintainers; [
      peterromfeldhk
    ];
  };
}