Arun Isaac schreef op di 29-03-2022 om 00:25 [+0530]: > -                         (,(dirname (search-input-file inputs "/bin/dtc")))))) > -                   (find-files (string-append out "/bin"))))))))) > +           (add-before 'configure 'configure-dtc-path > +             (lambda* (#:key inputs #:allow-other-keys) > +               ;; Reference dtc by its absolute store path. > +               (substitute* "riscv/dts.cc" > +                 (("DTC") > +                  (string-append "\"" (assoc-ref inputs "dtc") "/bin/dtc\"")))))))) Why is search-input-file being replaced by assoc-ref? Greetings, Maxime.