BUG? emacs helm conflicting entries

2022-03-22 Thread jgart
Hi Guixers, I got this error: ``` λ guix upgrade * The following packages will be upgraded: emacs-guix(dependencies or package changed) emacs-helm-company(dependencies or package changed) emacs-helm-descbinds (dependencies or package changed) emacs-helm-e

Re: Guix as remote dev machine

2022-03-22 Thread t
I guess one more thing that maybe worth investigating is Emacs + TRAMP. I've some experience with TRAMP and it mostly works. Trouble again is with this 2nd step: > 2. `guix shell` or start a container, with entire system if I need to Essentially TRAMP amounts to SSHing to your machine. But we

Re: Guix as remote dev machine

2022-03-22 Thread t
> tigervnc-server 1.12.0-0.b484c22 installed. > xrandr 1.5.1 Dunno how I feel about VNC but this is certainly something to try. The one time I tried VNC in the past it felt extremely heavy and sluggish. This is something I'd probably use for Windows. I'll have to give it a go. Thank you for sug

Professional audio setup (JACK, PipeWire)

2022-03-22 Thread Gabriel Wicki
Hello dear fellow Guix My wish is simple: i'd love to get back at live-coding audio using SuperCollider. Thankfully all the necessities for that intent are readily available in GNU Guix. Unfortunately i'm unable to get it to sound... SuperCollider needs some layer in between itself and ALSA an

*BUG* cannot convert wide string to output locale

2022-03-22 Thread jgart
Hi Guixers! I get the following backtrace when trying to upgrade nss-certs from 3.59 to 3.71: ``` λ guix upgrade nss-certs The following package will be upgraded: nss-certs 3.59 → 3.71 0.1 MB will be downloaded nss-certs-3.71 128KiB

Re: How to replace %output with #$output?

2022-03-22 Thread Tobias Geerinckx-Rice
Mekeor, > #~(list "CC=gcc") Yes of course it works like this wh— Oh. D'oh. My bad! Glad to hear you got there in the end. Kind regards, T G-R Sent on the go. Excuse or enjoy my brevity.

Re: How to replace %output with #$output?

2022-03-22 Thread Mekeor Melire
2022-03-22 / 16:16 / tuma...@163.com: > Mekeor Melire writes: > >> 2022-03-21 / 21:57 / m...@tobias.gr: >> >>> Remove the quote after arguments (replace it with a plain LIST call) and >>> add #~ before (modify-phases ...) to define a gexp. >>> >>> Untested example: >>> >>> (arguments >>>

Re: How to replace %output with #$output?

2022-03-22 Thread Mekeor Melire
2022-03-22 / 07:59 / m...@tobias.gr: > On 22 March 2022 07:26:38 UTC, Mekeor Melire wrote: >> (list "CC=gcc") >> >>With these changes I get this error: >> >> Wrong type to apply: "CC=gcc" > > That can happen only if you apply the string as a procedure, i.e. > forgot the the LIST. The `list

Re: How to replace %output with #$output?

2022-03-22 Thread Feng Shu
Mekeor Melire writes: > 2022-03-21 / 21:57 / m...@tobias.gr: > >> Remove the quote after arguments (replace it with a plain LIST call) and add >> #~ before (modify-phases ...) to define a gexp. >> >> Untested example: >> >> (arguments >> (list #:tests? #f ; no tests >> #:m

Re: How to replace %output with #$output?

2022-03-22 Thread Tobias Geerinckx-Rice
On 22 March 2022 07:26:38 UTC, Mekeor Melire wrote: > (list "CC=gcc") > >With these changes I get this error: > > Wrong type to apply: "CC=gcc" That can happen only if you apply the string as a procedure, i.e. forgot the the LIST. >> So does hard-coding 'gcc' over using (cc-for-target). >

Re: How to replace %output with #$output?

2022-03-22 Thread Mekeor Melire
2022-03-21 / 21:57 / m...@tobias.gr: > Remove the quote after arguments (replace it with a plain LIST call) and add > #~ before (modify-phases ...) to define a gexp. > > Untested example: > > (arguments > (list #:tests? #f ; no tests > #:make-flags (list "CC=gcc") >