Labsolns Guix channel

View the channels video for details on how to set up a Guix channel.

  • Installation

labsolns can be installed as a Guix channel. To do so, add it to ~/.config/guix/channels.scm:

1
2
3
4
5
6
7
8
9
10
11
(cons* (channel
(name 'labsolns)
(url "https://github.com/labsolns/labsolns")
(branch "master")
;; Enable signature verification:
(introduction
(make-channel-introduction
"c82e51a51e9cfb0b1b8ae8f40e5746cbdd308d6b"
(openpgp-fingerprint
"E709 94D1 9CB0 FE2B CAC4 9E54 0BF8 F292 4D2B 1944"))))
%default-channels)

Then run guix pull.

If you receive error messages like “…commit nnnn is not a descendant of nnnnn …” use

guix pull –allow-downgrades.