aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2021-02-08 16:16:44 -0300
committerEuAndreh <eu@euandre.org>2021-02-08 16:16:44 -0300
commit7ceff689fe7e7d037861e79096d097150abcabde (patch)
tree156f131e51e1046234c6f5aed2eb5232d8b54769
parentAdd Guix euandreh.scm (diff)
downloadpackage-repository-7ceff689fe7e7d037861e79096d097150abcabde.tar.gz
package-repository-7ceff689fe7e7d037861e79096d097150abcabde.tar.xz
Add README.md
-rw-r--r--README.md35
1 files changed, 35 insertions, 0 deletions
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..7a5f91d
--- /dev/null
+++ b/README.md
@@ -0,0 +1,35 @@
+# euandreh-package-repository
+
+Personal package repository for a variety of operating systems, mainly for
+packaging personal projects of mine and make it available for users and
+packagers.
+
+## Guix
+
+Custom Guix channel for packages not compatible with mainline Guix, or not
+packaged there yet.
+
+To add this channel to your `~/.config/guix/channels.scm`:
+
+```scheme
+(append
+ (list
+ (channel ...)
+ (channel
+ (name 'xyz-euandreh)
+ (url "git://git.euandreh.xyz/euandreh-package-repository")
+ (branch "main")
+ (introduction
+ (make-channel-introduction
+ "d749e053e6db365069cb9b2ef47a78b06f9e7361"
+ (openpgp-fingerprint
+ "5BDA E9B8 B2F6 C6BC BB0D 6CE5 81F9 0EC3 CD35 6060")))))
+ %default-channels)
+```
+
+See also the Guix manual for usage on channels:
+https://guix.gnu.org/manual/en/guix.html#Channels
+
+## LICENSE
+
+Packaging code licensed under AGPLv3+.