diff options
author | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2024-02-03 15:22:47 +0100 |
---|---|---|
committer | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2024-02-03 15:31:30 +0100 |
commit | 70a1556bd26a5f57ff88088558c3ad0caac8ba8e (patch) | |
tree | fc894054c4e56190788a993fdb5f7087326793cd /channels.scm | |
parent | 79a341f1e446077499f2778cfb35b4e64b65dbb7 (diff) |
Add ruby-sweet-moon channel
Diffstat (limited to 'channels.scm')
-rw-r--r-- | channels.scm | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/channels.scm b/channels.scm index f346bcd..3245237 100644 --- a/channels.scm +++ b/channels.scm @@ -55,8 +55,21 @@ (name name) (url url))))) +(define ruby-sweet-moon + (let* ((fingerprint "590E 500F E39D 26B3 E60B 743B 6D81 B120 7711 899F") + (make-channel-introduction + (make-channel-introduction + "1c15421c443c6e1f741c285e58e848beb6754048" + (openpgp-fingerprint fingerprint)))) + (channel + (name 'ruby-sweet-moon) + (url "https://git.marekpasnikowski.pl/git/sweet-moon.git") + (branch "guix") + (introduction make-channel-introduction)))) + (define-public izumi-channels-service-type (service home-channels-service-type (list deployment guix ruby-babosa - ruby-nano-bots))) + ruby-nano-bots + ruby-sweet-moon))) |