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