Efraim Flashner a écrit : > On Wed, Aug 14, 2019 at 11:30:09PM +0200, Guillaume Le Vaillant wrote: >> * gnu/packages/finance.scm (monero): Update to 0.14.1.2. >> --- >> gnu/packages/finance.scm | 15 ++++++++------- >> 1 file changed, 8 insertions(+), 7 deletions(-) >> >> "return ((std::string(getenv(\"HOME\"))) / ")) >> #t)) >> + (add-after 'change-log-path 'fix-file-permissions-for-tests >> + (lambda _ >> + (for-each (lambda (f) >> + (chmod f #o644)) >> + (find-files "tests/data/" "wallet_9svHk1.*")) >> + #t)) >> ;; Only try tests that don't need access to network or system >> (replace 'check > > Does 'make-file-writable' from (guix build utils) instead of 'chmod' > work here? Yes it works. The 'make-file-writable' function is perfect here, I just didn't know about it. Here's the updated patch: