nixpkgs/pkgs/development/mobile/cocoapods/default.nix
Peter Romfeld f5b3f9962e cocoapods: init at 1.3.1 (#32583)
* cocoapods: init at 1.3.1

* requires xcode
2018-04-21 14:37:56 -05:00

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
];
};
}