Re: Custom Service Definition for Caddy

2021-02-01 Thread Cameron
Thanks Efraim! I actually spent some time last night with strace trying to figure out if the thing forks or not. "caddy run" is *supposed& to not daemonize, but who knows if it does some other fork funny business. It was late though and I couldn't keep my eyes open. In the cold light of day thi

Re: Output all dependencies recursively for package

2021-02-01 Thread me--- via
zimoun 写道: There would be the same philosophical discussion about what constitutes a "refresh". ;-) Joke aside, this "hello@2.10 depends on the following 20 packages:" is annoying because you have to pipe " | cut -d':' -f2" to get what you are really interested in. Oh, I agree with you on b

Re: Output all dependencies recursively for package

2021-02-01 Thread Phil
Thanks for all the responses on this. In short - yes this does the job. I should really write it in Guile: guix refresh –list-transitive my-pkg | cut -d':' -f2 | tr ' ' '\n' | grep python | sort I have a guix package that had originally been deployed with a python requirements file to create a

How to use pflask?

2021-02-01 Thread Sergiu Ivanov
Hello, I installed pflask in the system profile and I tried running it without any additional configuration: # pflask -u scolobb [✘] write(gid_map): Operation not permitted [✘] Child failed with code '1' How do you use pflask on Guix? In the meantime, I'll check out LXC. - Sergiu

Correct formatting of Guile in Emacs

2021-02-01 Thread Phil
Hi, I'm in a position where I have quite a few packages built that I'd like to contribute to Guix. I'm writing these in emacs with scheme-mode/geiser installed. However I've noted that any attempt to align my Guile code (eg M-x indent-region) results in code being aligned under the previous line

Re: How to use pflask?

2021-02-01 Thread Sergiu Ivanov
Thus quoth Sergiu Ivanov on Mon Feb 01 2021 at 22:01 (+0100): > Hello, > > I installed pflask in the system profile and I tried running it without > any additional configuration: > > # pflask -u scolobb > [✘] write(gid_map): Operation not permitted > [✘] Child failed with code '1' FWIW, I

Re: Correct formatting of Guile in Emacs

2021-02-01 Thread Cameron
Hi Phil, I haven't done this myself, but the manual has a page on this: https://guix.gnu.org/manual/en/html_node/Formatting-Code.html >From this, it seems like the 'emacs-guix' package has a 'guix-devel-mode' that >should indent per the Guix style guide. -Cam On Mon, Feb 1, 2021, at 3:03 PM,

Re: Correct formatting of Guile in Emacs

2021-02-01 Thread Phil
Cameron writes: > Hi Phil, > > I haven't done this myself, but the manual has a page on this: > https://guix.gnu.org/manual/en/html_node/Formatting-Code.html That's exactly what I needed thanks, and apologies - I should have spotted that myself in the manual!