summary refs log tree commit diff
path: root/pkgs/development/mobile/cocoapods/default.nix
blob: 56624370b14a6f4d4aff8c08a7ba8a4e82d0590d (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 = "cocoapods";
  gemdir = ./.;

  meta = with lib; {
    description     = "CocoaPods manages dependencies for your Xcode projects.";
    homepage        = https://github.com/CocoaPods/CocoaPods;
    license         = licenses.mit;
    platforms       = platforms.darwin;
    maintainers     = with maintainers; [
      peterromfeldhk
    ];
  };
}