Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.03 13 lines 268 B view raw
1#!/usr/bin/env nix-shell 2#!nix-shell -i bash -p bundler bundix 3 4set -euf -o pipefail 5 6( 7 cd pkgs/development/ruby-modules/with-packages 8 rm -f gemset.nix Gemfile.lock 9 bundle lock 10 bundix 11 mv gemset.nix ../../../top-level/ruby-packages.nix 12 rm -f Gemfile.lock 13)