18 lines
418 B
Nix
18 lines
418 B
Nix
|
{ 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
|
||
|
];
|
||
|
};
|
||
|
}
|