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 b10e830807 gnu: Add emacs-meyvn
b10e830807 is described below

commit b10e830807cec28bbf8a2de70d222f76e56360d1
Author: Daniel Szmulewicz <[email protected]>
AuthorDate: Sat Jun 29 23:23:34 2024 +0300

    gnu: Add emacs-meyvn
    
    * gnu/packages/emacs-xyz.scm (emacs-meyvn): New variable.
    
    Change-Id: I4e97ce9745ad999b0db74644a82828e450135725
    Signed-off-by: Nicolas Goaziou <[email protected]>
---
 gnu/packages/emacs-xyz.scm | 30 ++++++++++++++++++++++++++++++
 1 file changed, 30 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 618b505f2f..ab6a4cf4ab 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -142,6 +142,8 @@
 ;;; Copyright © 2024 Wilko Meyer <[email protected]>
 ;;; Copyright © 2024 Noé Lopez <[email protected]>
 ;;; Copyright © 2024 gemmaro <[email protected]>
+;;; Copyright © 2024 Daniel Szmulewicz <[email protected]>
+
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -1860,6 +1862,34 @@ leveraging built-in functionality.")
     (license (list license:gpl3+
                    license:fdl1.3+)))) ; GFDLv1.3+ for the manual
 
+(define-public emacs-meyvn
+  (let ((commit "f2b809da1d1bf66f1a215a0e5c64f95d10118b76")) ;version bump
+    (package
+      (name "emacs-meyvn")
+      (version "1.3")
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/danielsz/meyvn-el";)
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32 "1zcckiqk046lbc059jxkh94sjicpvpsf1xkgi8i73rds2xxjyvpk"))))
+      (build-system emacs-build-system)
+      (propagated-inputs (list emacs-cider
+                               emacs-dash
+                               emacs-geiser
+                               emacs-parseclj
+                               emacs-parseedn
+                               emacs-projectile
+                               emacs-s))
+      (home-page "https://github.com/danielsz/meyvn-el";)
+      (synopsis "Emacs client for the Meyvn build tool")
+      (description
+       "This package provides an Emacs client for the @url{https://meyvn.org, 
Meyvn} build tool.")
+      (license license:gpl3+))))
+
 (define-public emacs-fzf
   (let ((commit "21912ebc7e1084aa88c9d8b7715e782a3978ed23")
         (revision "0"))

Reply via email to