From e0078f3bf080b8165ada54d21f267dfa252c6288 Mon Sep 17 00:00:00 2001 From: EuAndreh Date: Wed, 24 Aug 2022 19:41:36 -0300 Subject: src/xyz/euandreh/queue.scm: Add ruby-teamocil package --- src/xyz/euandreh/queue.scm | 25 ++++++++++++++++++++++++- 1 file changed, 24 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/xyz/euandreh/queue.scm b/src/xyz/euandreh/queue.scm index 677beaa..2822919 100644 --- a/src/xyz/euandreh/queue.scm +++ b/src/xyz/euandreh/queue.scm @@ -9,6 +9,7 @@ #:use-module (guix build-system gnu) #:use-module (guix build-system perl) #:use-module (guix build-system python) + #:use-module (guix build-system ruby) #:use-module (guix build-system trivial) #:use-module (gnu packages) #:use-module (gnu packages aspell) @@ -346,6 +347,27 @@ collections.OrderedDict that works in Python 2.4-2.6.") (description "We have made you a wrapper you can't refuse") (license #f))) +(define-public ruby-teamocil + (package + (name "ruby-teamocil") + (version "1.4.2") + (source (origin + (method url-fetch) + (uri (rubygems-uri "teamocil" version)) + (sha256 + (base32 + "1l5f33faipb45xx7ds67s7dqgvjlljlcxgpgig4pg8p002vg06r2")))) + (build-system ruby-build-system) + (arguments + `(#:tests? #f)) + (synopsis + "Teamocil is a simple tool used to automatically create windows and panes in tmux with YAML files.") + (description + "Teamocil is a simple tool used to automatically create windows and panes in tmux +with YAML files.") + (home-page "http://www.teamocil.com") + (license license:expat))) + (list grap hunspell-iconv @@ -358,4 +380,5 @@ collections.OrderedDict that works in Python 2.4-2.6.") python-pymd4c-latest mdpo-patched python-docx - python-telegram-bot) + python-telegram-bot + ruby-teamocil) -- cgit v1.2.3