summary refs log tree commit diff
path: root/pkgs/development/ruby-modules
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2022-11-30 06:01:30 +0000
committerGitHub <noreply@github.com>2022-11-30 06:01:30 +0000
commitaff62e907a88d91fa18281374e4f3cae7c880b62 (patch)
treea88bc4fe48b80a5031bf6a70cd33a963c80ddfff /pkgs/development/ruby-modules
parent541466e966f73ece86047ee252ec443c1258062c (diff)
parentb29e9c402578f5411253b6fb4d4cff316b51c09e (diff)
downloadnixpkgs-aff62e907a88d91fa18281374e4f3cae7c880b62.tar
nixpkgs-aff62e907a88d91fa18281374e4f3cae7c880b62.tar.gz
nixpkgs-aff62e907a88d91fa18281374e4f3cae7c880b62.tar.bz2
nixpkgs-aff62e907a88d91fa18281374e4f3cae7c880b62.tar.lz
nixpkgs-aff62e907a88d91fa18281374e4f3cae7c880b62.tar.xz
nixpkgs-aff62e907a88d91fa18281374e4f3cae7c880b62.tar.zst
nixpkgs-aff62e907a88d91fa18281374e4f3cae7c880b62.zip
Merge master into staging-next
Diffstat (limited to 'pkgs/development/ruby-modules')
-rw-r--r--pkgs/development/ruby-modules/bundler-update-script/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/ruby-modules/bundler-update-script/default.nix b/pkgs/development/ruby-modules/bundler-update-script/default.nix
index 50d0364aa06..cf4942f6e58 100644
--- a/pkgs/development/ruby-modules/bundler-update-script/default.nix
+++ b/pkgs/development/ruby-modules/bundler-update-script/default.nix
@@ -1,11 +1,11 @@
-{ runtimeShell, lib, writeScript, bundix, bundler, bundler-audit, coreutils, git, nix }:
+{ runtimeShell, lib, writeScript, bundix, bundler, bundler-audit, coreutils, git, nix_2_3 }:
 
 attrPath:
 
 let
   updateScript = writeScript "bundler-update-script" ''
     #!${runtimeShell}
-    PATH=${lib.makeBinPath [ bundler bundler-audit bundix coreutils git nix ]}
+    PATH=${lib.makeBinPath [ bundler bundler-audit bundix coreutils git nix_2_3 ]}
     set -o errexit
     set -o nounset
     set -o pipefail