aboutsummaryrefslogtreecommitdiff
path: root/src/xyz/euandreh/queue.scm
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2022-08-24 19:41:36 -0300
committerEuAndreh <eu@euandre.org>2022-08-24 19:41:36 -0300
commite0078f3bf080b8165ada54d21f267dfa252c6288 (patch)
treeaef75cf565cf902f6dd636a37354c49bc43196f3 /src/xyz/euandreh/queue.scm
parentpaku.json: Include guile-heredoc (diff)
downloadpackage-repository-e0078f3bf080b8165ada54d21f267dfa252c6288.tar.gz
package-repository-e0078f3bf080b8165ada54d21f267dfa252c6288.tar.xz
src/xyz/euandreh/queue.scm: Add ruby-teamocil package
Diffstat (limited to 'src/xyz/euandreh/queue.scm')
-rw-r--r--src/xyz/euandreh/queue.scm25
1 files changed, 24 insertions, 1 deletions
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)