Merge pull request #210761 from abathur/resholve_track_missed_fix
resholve: track missed upstream Nix fix
This commit is contained in:
commit
d00a5dad2a
2 changed files with 9 additions and 0 deletions
|
@ -129,6 +129,7 @@ rec {
|
|||
)
|
||||
)
|
||||
)}
|
||||
'' + lib.optionalString (partialSolution.interpreter != "none") ''
|
||||
${partialSolution.interpreter} -n $out
|
||||
'';
|
||||
};
|
||||
|
@ -146,6 +147,7 @@ rec {
|
|||
)
|
||||
)
|
||||
}
|
||||
'' + lib.optionalString (partialSolution.interpreter != "none") ''
|
||||
${partialSolution.interpreter} -n $out/bin/${name}
|
||||
'';
|
||||
};
|
||||
|
|
|
@ -179,4 +179,11 @@ rec {
|
|||
echo "Hello"
|
||||
file .
|
||||
'';
|
||||
resholvedScriptBinNone = resholve.writeScriptBin "resholved-script-bin" {
|
||||
inputs = [ file ];
|
||||
interpreter = "none";
|
||||
} ''
|
||||
echo "Hello"
|
||||
file .
|
||||
'';
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue