mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-16 18:53:17 +00:00
ae22f7d35c
cocoapods-beta is an alternative attribute for the cocoapods package that provides the latest beta instead of the stable version. Also switch to `bundlerApp` so we stop polluting the profile with our gem dependencies and can get rid of the broken `sandbox-pod` executable.
11 lines
351 B
Plaintext
Executable File
11 lines
351 B
Plaintext
Executable File
#!/usr/bin/env nix-shell
|
|
#! nix-shell -i bash -p bash bundix bundler
|
|
|
|
set -e
|
|
|
|
rm -f Gemfile.lock Gemfile-beta.lock
|
|
bundler lock
|
|
BUNDLE_GEMFILE=Gemfile-beta bundler lock --lockfile=Gemfile-beta.lock
|
|
bundix --gemfile=Gemfile --lockfile=Gemfile.lock --gemset=gemset.nix
|
|
bundix --gemfile=Gemfile-beta --lockfile=Gemfile-beta.lock --gemset=gemset-beta.nix
|