From f299debaac1cd0271291e9061aae486b46be2400 Mon Sep 17 00:00:00 2001 From: Andrew Marshall Date: Mon, 3 Jun 2024 22:40:16 -0400 Subject: [PATCH] bundlerEnv: Fix passthru not being passed-through E.g. `pkgs.bundlerEnv { passthru = { ... }; ... }` previously would not result in the `passthru` attrs not being concatenated onto the returned derivation. Now it will be. --- pkgs/development/ruby-modules/bundled-common/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/development/ruby-modules/bundled-common/default.nix b/pkgs/development/ruby-modules/bundled-common/default.nix index cd2f6f379efc..3bb95521132b 100644 --- a/pkgs/development/ruby-modules/bundled-common/default.nix +++ b/pkgs/development/ruby-modules/bundled-common/default.nix @@ -23,6 +23,7 @@ , nativeBuildInputs ? [] , buildInputs ? [] , extraConfigPaths ? [] +, passthru ? {} , ... }@args: @@ -182,7 +183,7 @@ let exit 1 ''; }; - }); + } // passthru); }; basicEnv =