guix-commits
[Top][All Lists]
Advanced

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

06/13: gnu: emacs-nix-mode: Update to 1.5.0.


From: guix-commits
Subject: 06/13: gnu: emacs-nix-mode: Update to 1.5.0.
Date: Mon, 5 Dec 2022 14:52:52 -0500 (EST)

ngz pushed a commit to branch master
in repository guix.

commit f36b31c014f0cc64ea18d4f89f2ed5f18d70c701
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
AuthorDate: Mon Dec 5 20:46:14 2022 +0100

    gnu: emacs-nix-mode: Update to 1.5.0.
    
    * gnu/packages/emacs-xyz.scm (emacs-nix-mode): Update to 1.5.0.
---
 gnu/packages/emacs-xyz.scm | 41 +++++++++++++++++++----------------------
 1 file changed, 19 insertions(+), 22 deletions(-)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index e13bf05ed1..330d043e93 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -26124,30 +26124,27 @@ chevron marks.")
       (license license:gpl3+))))
 
 (define-public emacs-nix-mode
-  ;; Use the latest commit to get unreleased fixes to build with Emacs 28.1.
-  (let ((commit "8fe2ccf0b01f694a77d2528e06c10f06057784f6")
-        (revision "0"))
-    (package
-      (name "emacs-nix-mode")
-      (version (git-version "1.4.5" revision commit))
-      (source
-       (origin
-         (method git-fetch)
-         (uri (git-reference
-               (url "https://github.com/NixOS/nix-mode";)
-               (commit commit)))
-         (file-name (git-file-name name version))
-         (sha256
-          (base32 "08kz9qp4gp55z1i87ig0ysq6pgqgwlgr765g1vp8gsh6lp3myh36"))))
-      (build-system emacs-build-system)
-      (propagated-inputs
-       (list emacs-company emacs-json-mode emacs-magit emacs-mmm-mode))
-      (home-page "https://github.com/NixOS/nix-mode";)
-      (synopsis "Emacs major mode for editing Nix expressions")
-      (description "@code{nixos-mode} provides an Emacs major mode for editing
+  (package
+    (name "emacs-nix-mode")
+    (version "1.5.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/NixOS/nix-mode";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1xvrnpk7cnjm55ja6j7bdnszkzj914gmyzb12r89jh0z25r09crq"))))
+    (build-system emacs-build-system)
+    (propagated-inputs
+     (list emacs-company emacs-json-mode emacs-magit emacs-mmm-mode))
+    (home-page "https://github.com/NixOS/nix-mode";)
+    (synopsis "Emacs major mode for editing Nix expressions")
+    (description "@code{nixos-mode} provides an Emacs major mode for editing
 Nix expressions.  It supports syntax highlighting, indenting and refilling of
 comments.")
-      (license license:lgpl2.1+))))
+    (license license:lgpl2.1+)))
 
 (define-public emacs-libmpdel
   (package



reply via email to

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