Re: How to select git:send-email output in config.scm?

2020-08-08 Thread EuAndreh
Tobias Geerinckx-Rice writes: > Indeed, my first mail was too hurried & my longer mail didn't > address this part at all... > > (packages > (append > (list (list git "send-email") > (list git "gui"); just another example > foo > ...) >

Re: How to select git:send-email output in config.scm?

2020-08-08 Thread Tobias Geerinckx-Rice
Good evening, EuAndreh 写道: Use specification->package+output. I tried that, and it indeed doesn't complains about 'unknown package' anymore. However, send-email is still not installed after a system reconfigure: Indeed, my first mail was too hurried & my longer mail didn't address this

Re: How to select git:send-email output in config.scm?

2020-08-08 Thread EuAndreh
> Use specification->package+output. I tried that, and it indeed doesn't complains about 'unknown package' anymore. However, send-email is still not installed after a system reconfigure: --8<---cut here---start->8--- $ sudo guix system reconfigure guix.scm ...

Re: How to select git:send-email output in config.scm?

2020-08-08 Thread Tobias Geerinckx-Rice
EuAndreh 写道: I got a bit confused by that. On IRC pkill9 mentioned that "git" is a package, but "git:send-email" is an output. But isn't "git" the same as "git:out"? No. Packages are records (the things created by calling (package ...), and upon which you can call (package-name ...) etc.).

Re: How to select git:send-email output in config.scm?

2020-08-08 Thread Tobias Geerinckx-Rice
Hi! EuAndreh 写道: I tried adding it just like that to my config.scm declaration: --8<---cut here---start->8--- (packages (append (map specification->package '("git" "git:send-email" ...)