nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1#!/usr/bin/env nix-shell
2#!nix-shell -i bash -p bundix zlib libyaml
3
4set -o errexit -o nounset
5
6script_dir=$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" &>/dev/null && pwd)
7
8for directory in "basic" "full"; do
9 pushd "$script_dir/$directory"
10 rm -f Gemfile.lock gemset.nix
11 BUNDLE_FORCE_RUBY_PLATFORM=true bundix --magic
12 rm -rf .bundle vendor
13 popd
14done