diff options
author | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2024-02-02 11:46:21 +0100 |
---|---|---|
committer | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2024-02-03 08:46:37 +0100 |
commit | f530a882d63ac0892fa747490c406218acf41935 (patch) | |
tree | d771e75de687766eabb5381a066fad0153054169 | |
parent | 34e4c4c0d982ca66305f89a4d37d589f4f4cbc86 (diff) |
Add Ruby Baboso to inputs
-rw-r--r-- | guix/ruby-nano-bots.scm | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/guix/ruby-nano-bots.scm b/guix/ruby-nano-bots.scm index 314479c..78863bc 100644 --- a/guix/ruby-nano-bots.scm +++ b/guix/ruby-nano-bots.scm @@ -2,7 +2,8 @@ #:use-module (guix build-system ruby) #:use-module (guix git-download) #:use-module (guix licenses) - #:use-module (guix packages)) + #:use-module (guix packages) + #:use-module (ruby-babosa)) (define ruby-nano-bots-git-reference (let ((git-reference-url "https://github.com/icebaker/ruby-nano-bots.git") @@ -23,8 +24,9 @@ (package-version "3.0.1") (package-source ruby-nano-bots-origin) (package-build-system ruby-build-system) - (package-arguments `(#:phases (modify-phases %standard-phases - ,delete-check))) + ;; (package-arguments `(#:phases (modify-phases %standard-phases + ;; ,delete-check))) + (package-inputs (list ruby-babosa)) (package-synopsis "Ruby Nano Bots") (package-description (string-append "Ruby Implementation of Nano Bots: " @@ -42,6 +44,7 @@ (source package-source) (build-system package-build-system) (arguments package-arguments) + (inputs package-inputs) (synopsis package-synopsis) (description package-description) (license package-license) |