diff options
author | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2024-02-01 06:43:15 +0100 |
---|---|---|
committer | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2024-02-01 08:03:32 +0100 |
commit | 28cae4f58d5ce9a65eb82e7897c2320782bde04d (patch) | |
tree | 8c828dbf15912f8538fdb2968208e5dfffa421bc /channels.scm | |
parent | 01cdfd7a1aa1877906881980f835029f10611b56 (diff) |
Install ruby-nano-bots channel
This will allow for installation of ruby-nano-bots package in the future.
Diffstat (limited to 'channels.scm')
-rw-r--r-- | channels.scm | 14 |
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 ) ) ) |