diff options
author | Javier Olaechea <pirata@gmail.com> | 2024-09-09 12:14:57 -0500 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-09-25 18:09:30 +0200 |
commit | 0169c1e475cb56221dd1acf9d1a97d5fdbb2c89a (patch) | |
tree | 85f8f4c20b339675bf3b1439741e5a505760db16 | |
parent | a2f7081df46ccf2332b28ef3cd8f20631bafc35a (diff) |
gnu: Add emacs-chruby-el.
* gnu/packages/emacs-xyz.scm (emacs-chruby-el): New variable.
Change-Id: Ief7622e585326671b123df770eeb3264cf201c3a
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 9a363b0183..ae09973428 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -7557,6 +7557,26 @@ detecting specific uses of Ruby, e.g. when using rails, and using a appropriate console.") (license license:gpl3+))) +(define-public emacs-chruby-el + (let ((version "1.0") + (commit "42bc6d521f832eca8e2ba210f30d03ad5529788f") + (revision "0")) + (package + (name "emacs-chruby-el") + (version (git-version version revision commit)) + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/plexus/chruby.el") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 (base32 "06pvjw40qk017py9km26vjrh90acycnkr5r04nxf664qqkjlg2mc")))) + (build-system emacs-build-system) + (home-page "https://github.com/plexus/chruby.el") + (synopsis "Emacs support for the Chruby version switcher for Ruby") + (description "This packages lets you switch Ruby versions using chruby.") + (license license:gpl3+)))) + ;; Package has no release. Version is extracted from "Version:" keyword in ;; main file. (define-public emacs-zeno-theme |