summary refs log tree commit diff
path: root/pkgs/development/tools/xcode-install/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/tools/xcode-install/default.nix')
-rw-r--r--pkgs/development/tools/xcode-install/default.nix17
1 files changed, 17 insertions, 0 deletions
diff --git a/pkgs/development/tools/xcode-install/default.nix b/pkgs/development/tools/xcode-install/default.nix
new file mode 100644
index 00000000000..677217b5c81
--- /dev/null
+++ b/pkgs/development/tools/xcode-install/default.nix
@@ -0,0 +1,17 @@
+{ lib
+, bundlerApp
+}:
+
+bundlerApp {
+  pname = "xcode-install";
+  gemdir = ./.;
+  exes = [ "xcversion" ];
+
+  meta = with lib; {
+    description = "Install and update your Xcodes automatically";
+    homepage = "https://github.com/xcpretty/xcode-install";
+    platforms = platforms.unix;
+    maintainers = with maintainers; [ q3k ];
+    license = with licenses; [ mit ];
+  };
+}