mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
29 lines
840 B
Nix
29 lines
840 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://github.com/fastlane/fastlane";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [
|
|
peterromfeldhk
|
|
nicknovitski
|
|
shahrukh330
|
|
marsam
|
|
];
|
|
};
|
|
}
|