about summary refs log tree commit diff
path: root/README
blob: 09fe8d7c59600d6a6b020467a3ed083313202527 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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
            "5629c7d9dabf1d0415fb67f00c2d0368310e53ef"
            (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
            "5629c7d9dabf1d0415fb67f00c2d0368310e53ef"
            (openpgp-fingerprint
             "F7E9 58D9 7711 36C6 EBCA  A908 F0F4 A585 9416 E70E"))))
 (channel-with-substitutes-available %default-guix-channel
                                     "https://ci.guix.gnu.org"))