brgenml1lpr: remove with statements

This commit is contained in:
Philip Taron 2024-08-16 14:05:39 -07:00
parent 8ee773a28e
commit 9062806b52
No known key found for this signature in database

View File

@ -28,9 +28,9 @@
*/
let
myPatchElf = file: with lib; ''
myPatchElf = file: ''
patchelf --set-interpreter \
${stdenv.cc.libc}/lib/ld-linux${optionalString stdenv.is64bit "-x86-64"}.so.2 \
${stdenv.cc.libc}/lib/ld-linux${lib.optionalString stdenv.is64bit "-x86-64"}.so.2 \
${file}
'';
in