From 5629c7d9dabf1d0415fb67f00c2d0368310e53ef Mon Sep 17 00:00:00 2001 From: Runciter Date: Fri, 4 Jul 2025 01:22:05 +0800 Subject: Initial. A .guix-authorizations A .guix-channel A COPYING A README A whispers/packages/dict.scm A whispers/packages/doc.scm A whispers/packages/pdf.scm A whispers/packages/sh.scm A whispers/packages/whispers.scm A whispers/services/console.scm A whispers/services/dict.scm A whispers/services/finance.scm A whispers/services/gps.scm A whispers/services/proton.scm A whispers/services/ssh-agent.scm A whispers/services/ssh-tunneler.scm A whispers/services/whispers.scm A whispers/services/whispers/finance.scm A whispers/services/whispers/gps.scm A whispers/services/whispers/mail.scm A whispers/services/whispers/ssh.scm A whispers/services/whispers/vpn.scm A whispers/services/whispers/xdg.scm A whispers/tests/ssh-tunneler.scm Signed-off-by: Runciter --- README | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 README (limited to 'README') diff --git a/README b/README new file mode 100644 index 0000000..3a55077 --- /dev/null +++ b/README @@ -0,0 +1,34 @@ +The whispers Guix channel. + +Channel introduction commit: af5bbe630cb990daf9f29b307572f965ee9fa099 +OpenPGP fingerprint: F7E9 58D9 7711 36C6 EBCA A908 F0F4 A585 9416 E70E + +In order to make the channel available, add the following to the list of +channels in your ~/.config/guix/channels.scm file, or your +/root/.config/channels.scm file, or both: + + (channel (name 'whispers) + (url "https://git.whispers-vpn.org/whispers.git") + (branch "trunk") + (introduction + (make-channel-introduction + "af5bbe630cb990daf9f29b307572f965ee9fa099" + (openpgp-fingerprint + "F7E9 58D9 7711 36C6 EBCA A908 F0F4 A585 9416 E70E")))) + +For example, if you just want to have the GNU Guix main channel and the +whispers channel, a complete channels.scm file might look like this: + +(use-modules (guix ci)) + +(list + (channel (name 'whispers) + (url "https://git.whispers-vpn.org/whispers.git") + (branch "trunk") + (introduction + (make-channel-introduction + "af5bbe630cb990daf9f29b307572f965ee9fa099" + (openpgp-fingerprint + "F7E9 58D9 7711 36C6 EBCA A908 F0F4 A585 9416 E70E")))) + (channel-with-substitutes-available %default-guix-channel + "https://ci.guix.gnu.org")) -- cgit 1.4.1