John Kehayias via Guix-patches via schreef op vr 14-01-2022 om 23:01 [+0000]: > +          (replace 'install > +            (lambda _ > +              (invoke "make" "install" > +                      (string-append "DESTDIR=" #$output) > +                      "PREFIX=")))))) Guix doesn't do staged installation (https://www.gnu.org/software/automake/manual/html_node/DESTDIR.html), so I would avoid (ab)using DESTDIR here. Instead of this phase, maybe do (replace 'install (lambda _ (invoke "make" "install" (string-append "PREFIX=" #$output))))))) instead (untested)? Greetings, Maxime.