nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 bundlerApp,
4 bundlerUpdateScript,
5 makeBinaryWrapper,
6}:
7
8bundlerApp {
9 pname = "fastlane";
10 gemdir = ./.;
11 exes = [ "fastlane" ];
12
13 buildInputs = [ makeBinaryWrapper ];
14
15 postBuild = ''
16 wrapProgram $out/bin/fastlane --set FASTLANE_SKIP_UPDATE_CHECK 1
17 '';
18
19 passthru.updateScript = bundlerUpdateScript "fastlane";
20
21 meta = {
22 description = "Tool to automate building and releasing iOS and Android apps";
23 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.";
24 homepage = "https://fastlane.tools/";
25 license = lib.licenses.mit;
26 maintainers = with lib.maintainers; [
27 nicknovitski
28 shahrukh330
29 ];
30 mainProgram = "fastlane";
31 };
32}