guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: gnu: Add emacs-rmsbolt.


From: guix-commits
Subject: branch master updated: gnu: Add emacs-rmsbolt.
Date: Fri, 02 Jul 2021 04:03:57 -0400

This is an automated email from the git hooks/post-receive script.

ngz pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new ddbfc21  gnu: Add emacs-rmsbolt.
ddbfc21 is described below

commit ddbfc21f76a0d9d6576c9367fa1b07ca9842a9a9
Author: Alexandr Vityazev <avityazev@posteo.org>
AuthorDate: Thu Jul 1 19:57:04 2021 +0000

    gnu: Add emacs-rmsbolt.
    
    * gnu/packages/emacs-xyz.scm (emacs-rmsbolt): New variable.
    
    Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
---
 gnu/packages/emacs-xyz.scm | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index f122bc4..5f1469e 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -8433,6 +8433,31 @@ sources.  Unlike GUD, it also supports running multiple 
debug sessions in
 parallel.")
     (license license:gpl3+)))
 
+(define-public emacs-rmsbolt
+  ;; There is no release tag. Version is extracted from main file.
+  (let ((commit "ff496660cc52a6dd33d358ef0acc6d4bb70cc340")
+        (revision "0")
+        (version "0.1.2"))
+    (package
+      (name "emacs-rmsbolt")
+      (version (git-version version revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://gitlab.com/jgkamat/rmsbolt";)
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32 "05i0101238yy1da6z543nr9x5gpvgdxrrdn3sw5dibcn6z62ml3p"))))
+      (build-system emacs-build-system)
+      (home-page "https://gitlab.com/jgkamat/rmsbolt";)
+      (synopsis "Emacs viewer for compiler output")
+      (description
+       "RMSBolt is a package to provide assembly or bytecode output for
+a source code input file.")
+      (license license:agpl3+))))
+
 (define-public emacs-request
   ;; We prefer a more recent commit that has support for auth-source,
   ;; which makes authentication more convenient for users and maintainers.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]