From: EuAndreh <eu@euandre.org>
To: Tobias Geerinckx-Rice <me@tobias.gr>
Cc: help-guix@gnu.org
Subject: Re: How to select git:send-email output in config.scm?
Date: Sat, 08 Aug 2020 11:11:25 -0300 [thread overview]
Message-ID: <87364xxm5u.fsf@euandre.org> (raw)
In-Reply-To: <87o8nlml9y.fsf@nckx>
[-- Attachment #1: Type: text/plain, Size: 522 bytes --]
> 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
...
$ git send-email *.patch
git: 'send-email' is not a git command. See 'git --help'
--8<---------------cut here---------------end--------------->8---
What am I missing here?
I've attached the full file to make it clearer.
[-- Attachment #2: Guix system declaration --]
[-- Type: text/plain, Size: 2975 bytes --]
;; This is an operating system configuration generated
;; by the graphical installer.
(use-modules (gnu))
(use-service-modules desktop networking ssh xorg nix)
(operating-system
(locale "en_US.utf8")
(timezone "America/Sao_Paulo")
(keyboard-layout (keyboard-layout "br" #:options '("caps:swapescape")))
(host-name "velhinho-guix-system")
(users (cons* (user-account
(name "andreh")
(comment "andreh")
(group "users")
(home-directory "/home/andreh")
(supplementary-groups
'("wheel" "netdev" "audio" "video")))
%base-user-accounts))
(packages
(append
(map specification->package+output
'("nss-certs" ;; suggested by Guix
"help2man" ;; used in Guix development
"strace"
"wget"
"xclip"
"autojump"
"git"
"git:send-email"
"rlwrap"
"myrepos"
"borg"
"bash-completion"
"vlc"
"youtube-dl"
"sox"
"jq"
"calibre"
"notmuch"
"isync"
"xset"
"bluez"
"playerctl"
"xmessage"
"alsa-utils"
"icecat" ; not firefox FIXME
"git-remote-gcrypt"
"git-crypt"
"the-silver-searcher"
"fd"
"ranger"
"seahorse"
"nautilus"
"git-annex"
"emacs"
"gettext"
"openssh"
"gnupg"
"nvi"
"tmux"
"direnv"
"pinentry-gnome3"
"pinentry"
"keepassxc"
"recutils"
"owncloud-client" ; FIXME: nextcloud
"xterm"
"htop"
;; xmonad
"xmonad"
"ghc"
"ghc-xmonad-contrib"
"gcc-toolchain"
"glibc"
"xmobar"
"dmenu"))
%base-packages))
(services
(append
(list (service gnome-desktop-service-type)
(set-xorg-configuration
(xorg-configuration
(keyboard-layout keyboard-layout))))
%desktop-services))
(bootloader
(bootloader-configuration
(bootloader grub-efi-bootloader)
(target "/boot/efi")
(keyboard-layout keyboard-layout)))
(mapped-devices
(list (mapped-device
(source
(uuid "67a25dfa-ed48-4466-89f3-e291365df104"))
(target "cryptroot")
(type luks-device-mapping))))
(file-systems
(cons* (file-system
(mount-point "/")
(device "/dev/mapper/cryptroot")
(type "btrfs")
(dependencies mapped-devices))
(file-system
(mount-point "/boot/efi")
(device (uuid "1B26-9F4E" 'fat32))
(type "vfat"))
%base-file-systems)))
[-- Attachment #3: Type: text/plain, Size: 2 bytes --]
.
next prev parent reply other threads:[~2020-08-08 14:11 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-08-08 9:50 How to select git:send-email output in config.scm? EuAndreh
2020-08-08 11:26 ` Tobias Geerinckx-Rice
2020-08-08 14:11 ` EuAndreh [this message]
2020-08-08 18:16 ` Tobias Geerinckx-Rice
2020-08-08 20:53 ` EuAndreh
2020-08-08 11:33 ` Tobias Geerinckx-Rice
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=87364xxm5u.fsf@euandre.org \
--to=eu@euandre.org \
--cc=help-guix@gnu.org \
--cc=me@tobias.gr \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.