diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/xyz/euandreh/queue.scm | 25 |
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) |