File tree 1 file changed +5
-6
lines changed
pkgs/development/ruby-modules/bundled-common
1 file changed +5
-6
lines changed Original file line number Diff line number Diff line change 61
61
62
62
copyIfBundledByPath = { bundledByPath ? false , ...} @main :
63
63
( if bundledByPath then
64
- assert gemFiles . gemdir != null ; "cp -a ${ gemFiles . gemdir } /* $out/"
64
+ assert gemFiles . gemdir != null ; "cp -a ${ gemFiles . gemdir } /* $out/" #*/
Has comments. Original line has comments. 65
65
else ""
66
66
) ;
67
67
@@ -109,11 +109,10 @@ let
109
109
meta = { platforms = ruby . meta . platforms ; } // meta ;
110
110
111
111
passthru = rec {
112
- inherit ruby bundler gems mainGem confFiles envPaths ;
112
+ inherit ruby bundler gems confFiles envPaths ;
113
113
114
- wrappedRuby =
115
- stdenv . mkDerivation {
116
- name = "wrapped-ruby-${ pname } " ;
114
+ wrappedRuby = stdenv . mkDerivation {
115
+ name = "wrapped-ruby-${ pname' } " ;
117
116
nativeBuildInputs = [ makeWrapper ] ;
118
117
buildCommand = ''
119
118
mkdir -p $out/bin
137
136
require 'bundler/setup'
138
137
'' ;
139
138
in stdenv . mkDerivation {
140
- name = "${ pname } -interactive-environment" ;
139
+ name = "${ pname' } -interactive-environment" ;
141
140
nativeBuildInputs = [ wrappedRuby basicEnv ] ;
142
141
shellHook = ''
143
142
export OLD_IRBRC=$IRBRC
You can’t perform that action at this time.