aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRunciter2024-10-30 23:03:01 +0800
committerRunciter2024-10-30 23:03:01 +0800
commit9fe237dd6e826bedb5ebb69e80d0b16e81cadfdc (patch)
tree4d769210521030135a3a1726e753f2fac1e9678d
parentaf5bbe630cb990daf9f29b307572f965ee9fa099 (diff)
downloadwhispers-9fe237dd6e826bedb5ebb69e80d0b16e81cadfdc.tar.gz
Update README with instructions regarding channels.scm.HEADtrunk
M README
-rw-r--r--README33
1 files changed, 33 insertions, 0 deletions
diff --git a/README b/README
index 07ef4b1..3a55077 100644
--- a/README
+++ b/README
@@ -1 +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"))