diff options
author | David Thompson <dthompson2@worcester.edu> | 2023-09-21 07:41:26 -0400 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2023-09-21 07:41:42 -0400 |
commit | 819d9a7ef66508e0edf9c05f314826b1341da7b8 (patch) | |
tree | 0bd5af8fb8107d271eb236d137439bf4d2478273 |
First commit!
-rw-r--r-- | README.md | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/README.md b/README.md new file mode 100644 index 0000000..ef244bc --- /dev/null +++ b/README.md @@ -0,0 +1,24 @@ +# Dave's Guix channel + +This is a place for sharing bleeding edge or transient software that I +make that doesn't belong in Guix itself. I host packages for my game +jam entries here, for example. + +I don't host substitutes so everything here will get built from +source, but there's nothing that should take very long to build. + +## Using this channel + +Add the following to the list in `~/.config/guix/channels.scm`: + +```scheme +(channel + (name 'dthompson) + (url "https://git.dthompson.us/guix-channel.git") + (branch "main") + (introduction + (make-channel-introduction + "commit goes here" + (openpgp-fingerprint + "8CCB A7F5 52B9 CBEA E1FB 2915 8328 C747 0FF1 D807")))) +``` |