mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
1f49035aca
Co-authored-by: Alyssa Ross <hi@alyssa.is>
14 lines
268 B
Plaintext
Executable file
14 lines
268 B
Plaintext
Executable file
#!/usr/bin/env nix-shell
|
|
#!nix-shell -i bash -p bundler bundix
|
|
|
|
set -euf -o pipefail
|
|
|
|
(
|
|
cd pkgs/development/ruby-modules/with-packages
|
|
rm -f gemset.nix Gemfile.lock
|
|
bundle lock
|
|
bundix
|
|
mv gemset.nix ../../../top-level/ruby-packages.nix
|
|
rm -f Gemfile.lock
|
|
)
|