about summary refs log tree commit diff
path: root/pkgs/development/ruby-modules/bundler-env/default.nix
diff options
context:
space:
mode:
authorJudson <nyarly@gmail.com>2017-06-25 17:40:22 -0700
committerJudson <nyarly@gmail.com>2017-06-25 17:40:22 -0700
commit603e84caefe2be319263ad6f83637af533834cc9 (patch)
treeb19cd8ab5869e0d2a04afa5553dceb00700b367d /pkgs/development/ruby-modules/bundler-env/default.nix
parentfc302bc07fd7a771751a6b94760730f1032e1f76 (diff)
downloadnixlib-603e84caefe2be319263ad6f83637af533834cc9.tar
nixlib-603e84caefe2be319263ad6f83637af533834cc9.tar.gz
nixlib-603e84caefe2be319263ad6f83637af533834cc9.tar.bz2
nixlib-603e84caefe2be319263ad6f83637af533834cc9.tar.lz
nixlib-603e84caefe2be319263ad6f83637af533834cc9.tar.xz
nixlib-603e84caefe2be319263ad6f83637af533834cc9.tar.zst
nixlib-603e84caefe2be319263ad6f83637af533834cc9.zip
Fixing an overload of "pname"
Diffstat (limited to 'pkgs/development/ruby-modules/bundler-env/default.nix')
-rw-r--r--pkgs/development/ruby-modules/bundler-env/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/ruby-modules/bundler-env/default.nix b/pkgs/development/ruby-modules/bundler-env/default.nix
index a72647fb00a1..7d175cfeccb7 100644
--- a/pkgs/development/ruby-modules/bundler-env/default.nix
+++ b/pkgs/development/ruby-modules/bundler-env/default.nix
@@ -27,7 +27,7 @@ let
     else if pname != null then "${toString pname}-${basicEnv.gems."${pname}".version}"
     else throw "bundlerEnv: either pname or name must be set";
 
-  basicEnv = (callPackage ../bundled-common {}) (args // { inherit pname name; });
+  basicEnv = (callPackage ../bundled-common {}) (args // { inherit pname name; mainGemName = pname; });
 
   inherit (basicEnv) envPaths;
   # Idea here is a mkDerivation that gen-bin-stubs new stubs "as specified" -