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/mbcladwell/labsolns")
(branch "master")
;; Enable signature verification:
(introduction
(make-channel-introduction
"74b2041a467ce3e35fd989f2d66a08e5697f980b"
(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.