Re: guix environment shebang interpreter

2020-02-06 Thread John D. Boy
> > Is there a Guix equivalent of the nix-shell shebang? > You could imagine something like: > > #! /usr/bin/env guix environment --ad-hoc PKG1 PKG2 ... -- > INTERPRETER > > But alas, on linux you cannot put more than one argument in the shebang > line. I have successfully gotten this

Re: Problem running guix pull on aarch64

2020-02-06 Thread Christopher Baines
Brian Woodcox writes: > I’m having a similar problem doing a guix pull on a Pinebook Pro running > arch. I’ve installed the latest binary as of yesterday. > > Always hangs at that point. I can only get to 54% and it hangs. Ah, interesting, it looks like it's failing in the same way on

Re: guix pull: error: getting status of /var/guix/gcroots

2020-02-06 Thread Jimmy Thrasibule
> Do you have any possibility to run guix pull with strace? Unfortunately containers are not given PTRACE privileges during the build phase so I cannot call strace. > I do not have carefully look to your files, but the issue should be: > - wrong permission > - /var/guix is not exposed Well

Re: Problem running guix pull on aarch64

2020-02-06 Thread Brian Woodcox
I’m having a similar problem doing a guix pull on a Pinebook Pro running arch. I’ve installed the latest binary as of yesterday. Always hangs at that point. I can only get to 54% and it hangs. > On Feb 6, 2020, at 1:16 PM, Christopher Baines wrote: > > Hey, > > I've been trying to run guix

Problem running guix pull on aarch64

2020-02-06 Thread Christopher Baines
Hey, I've been trying to run guix pull on a Overdrive 1000, however it seems to hang. cbaines@monokuma ~$ guix build /gnu/store/km28c1gzcmm8j45ikp0v9ai3fcvpn8lr-guix-system.drv The following derivation will be built: /gnu/store/km28c1gzcmm8j45ikp0v9ai3fcvpn8lr-guix-system.drv building

Re: guix pull: error: getting status of /var/guix/gcroots

2020-02-06 Thread zimoun
Hi, On Thu, 30 Jan 2020 at 14:11, Jimmy Thrasibule wrote: > I'm building a Docker image in order to get a GuixSD by using the ``guix > system docker-image`` command. See the Dokerfile at: > https://bitbucket.org/x237net/guixsd/src/master/src/Dockerfile. Instead, the issue should come from this

Re: guix environment shebang interpreter

2020-02-06 Thread mlell
Hi! Is there a Guix equivalent of the nix-shell shebang? You could imagine something like: #! /usr/bin/env guix environment --ad-hoc PKG1 PKG2 ... -- INTERPRETER But alas, on linux you cannot put more than one argument in the shebang line. See this discussion:

Re: guix pull: error: getting status of /var/guix/gcroots

2020-02-06 Thread mlell
Hi Jimmy! I guess they are reducing the capabilities allowed to their build platform but I can really tell what operation is guix pull attempting in this particular case. Do you have any possibility to run guix pull with strace? strace is a program that logs all the system calls [1] of