Seems like Gnus cleaned up the message for me, so I can see a bit more.

"花不见海" <2694273...@qq.com> writes:

> (define download-ohmyzsh-install
>   (with-imported-modules '((guix build utils))
>     #~(begin
>         (use-modules (guix build utils))
>         (invoke
>           "curl"
>           "-L"
>           
> "https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh";
>           "-O"
>           "install.sh")
>         (invoke "sh" "install.sh"))))
>
> (home-environment
>   [packages ...]
>   (services
>     (list
>       (service home-run-on-first-login-service-type download-ohmyzsh-install)
>       (service home-zsh-service-type (home-zsh-configuration)))))
>

I tried to refute the service declaration by looking at the service
source code, but I was not able to find any issues this way.

> \builder for `/gnu/store/3szcc1q867q7hrqigsns4xf8bvrc2l5h-home.drv' failed 
> with exit code 1
> build of /gnu/store/3szcc1q867q7hrqigsns4xf8bvrc2l5h-home.drv failed
> View build log at 
> '/var/log/guix/drvs/3s/zcc1q867q7hrqigsns4xf8bvrc2l5h-home.drv.gz'.

This line here, "View build log at $path", is the most important one.
Everything else does not matter.  Post the contents of that log using
zcat, which is a variant of cat that does decompression.

Reply via email to