lol

Merge pull request #210761 from abathur/resholve_track_missed_fix

resholve: track missed upstream Nix fix

authored by

Thiago Kenji Okada and committed by
GitHub
d00a5dad a6975fd0

+9
+2
pkgs/development/misc/resholve/resholve-utils.nix
··· 129 ) 130 ) 131 )} 132 ${partialSolution.interpreter} -n $out 133 ''; 134 }; ··· 146 ) 147 ) 148 } 149 ${partialSolution.interpreter} -n $out/bin/${name} 150 ''; 151 };
··· 129 ) 130 ) 131 )} 132 + '' + lib.optionalString (partialSolution.interpreter != "none") '' 133 ${partialSolution.interpreter} -n $out 134 ''; 135 }; ··· 147 ) 148 ) 149 } 150 + '' + lib.optionalString (partialSolution.interpreter != "none") '' 151 ${partialSolution.interpreter} -n $out/bin/${name} 152 ''; 153 };
+7
pkgs/development/misc/resholve/test.nix
··· 179 echo "Hello" 180 file . 181 ''; 182 }
··· 179 echo "Hello" 180 file . 181 ''; 182 + resholvedScriptBinNone = resholve.writeScriptBin "resholved-script-bin" { 183 + inputs = [ file ]; 184 + interpreter = "none"; 185 + } '' 186 + echo "Hello" 187 + file . 188 + ''; 189 }