about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/admin/fastlane/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/tools/admin/fastlane/default.nix')
-rw-r--r--nixpkgs/pkgs/tools/admin/fastlane/default.nix28
1 files changed, 28 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/tools/admin/fastlane/default.nix b/nixpkgs/pkgs/tools/admin/fastlane/default.nix
new file mode 100644
index 000000000000..d8d4ffd4f134
--- /dev/null
+++ b/nixpkgs/pkgs/tools/admin/fastlane/default.nix
@@ -0,0 +1,28 @@
+{ 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
+      marsam
+    ];
+  };
+}