diff options
author | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2024-02-03 10:19:20 +0100 |
---|---|---|
committer | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2024-02-03 10:19:41 +0100 |
commit | 75b25a7aae620fde7b1b29850878690dba6fba9a (patch) | |
tree | e5e6dcf6d1fb7b0315e53c91b2d3e2a5c0d77d71 | |
parent | 67473f033be877d5c6fb2596498050b747c46648 (diff) |
Add missing ruby-concurrent-ruby to inputs
-rw-r--r-- | guix/ruby-nano-bots.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/guix/ruby-nano-bots.scm b/guix/ruby-nano-bots.scm index 567cbab..cea5434 100644 --- a/guix/ruby-nano-bots.scm +++ b/guix/ruby-nano-bots.scm @@ -1,4 +1,5 @@ (define-module (ruby-nano-bots) + #:use-module (gnu packages ruby) #:use-module (guix build-system ruby) #:use-module (guix git-download) #:use-module (guix licenses) @@ -24,7 +25,8 @@ (build-system ruby-build-system) (arguments '(#:phases (modify-phases %standard-phases (delete 'check)))) - (inputs (list ruby-babosa)) + (inputs (list ruby-babosa + ruby-concurrent-ruby)) (synopsis "Ruby Nano Bots") (description (string-append "Ruby Implementation of Nano Bots:" " small, AI-powered bots that can be" |