Hello Guix! My update on this.
So I though of a dirty hack... (define guix-patches (package (inherit guix) (name "guix-patches") (build-system copy-build-system) (arguments '(#:install-plan '(("gnu/packages/patches/" "share/guile/site/3.0/gnu/packages/patches/")))) (native-inputs '()) (inputs '()) (propagated-inputs '()) (native-search-paths '()) (home-page "") (synopsis "") (description "") (properties '()))) The reasoning was that I can wrap everithing it in (with-extensions (list guix-patches ...) ...) But still loading patches fails. Even though they should be now in %load-path... -- David aka zzappie