summaryrefslogtreecommitdiff
path: root/channels.scm
diff options
context:
space:
mode:
Diffstat (limited to 'channels.scm')
-rw-r--r--channels.scm14
1 files changed, 13 insertions, 1 deletions
diff --git a/channels.scm b/channels.scm
index c6cda99..9fca318 100644
--- a/channels.scm
+++ b/channels.scm
@@ -31,5 +31,17 @@
( name name )
( url url ) ) ) )
+(define ruby-nano-bots
+ (let ((branch "guix")
+ (commit "92135778711a5496de7988a40c1aec95a41e16d7")
+ (fingerprint "590E 500F E39D 26B3 E60B 743B 6D81 B120 7711 899F")
+ (name 'ruby-nano-bots)
+ (url "https://git.marekpasnikowski.pl/git/ruby-nano-bots.git"))
+ (let ((key (openpgp-fingerprint fingerprint)))
+ (channel (branch branch)
+ (introduction (make-channel-introduction commit key))
+ (name name)
+ (url url)))))
+
( define-public izumi-channels-service-type
- ( service home-channels-service-type ( list deployment guix ) ) )
+ ( service home-channels-service-type ( list deployment guix ruby-nano-bots ) ) )