2019-04-10 06:10:38 +01:00
|
|
|
{ lib, bundlerApp, ruby
|
|
|
|
, beta ? false }:
|
2018-04-21 20:37:56 +01:00
|
|
|
|
2019-04-10 06:10:38 +01:00
|
|
|
bundlerApp rec {
|
2018-04-21 20:37:56 +01:00
|
|
|
inherit ruby;
|
|
|
|
pname = "cocoapods";
|
2019-04-10 06:10:38 +01:00
|
|
|
gemfile = if beta then ./Gemfile-beta else ./Gemfile;
|
|
|
|
lockfile = if beta then ./Gemfile-beta.lock else ./Gemfile.lock;
|
|
|
|
gemset = if beta then ./gemset-beta.nix else ./gemset.nix;
|
|
|
|
exes = [ "pod" ];
|
2018-04-21 20:37:56 +01:00
|
|
|
|
|
|
|
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
|
2019-04-10 06:10:38 +01:00
|
|
|
lilyball
|
2018-04-21 20:37:56 +01:00
|
|
|
];
|
|
|
|
};
|
|
|
|
}
|