guix-commits
[Top][All Lists]
Advanced

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

07/09: gnu: emacs-magit: Update to 2.13.1.


From: guix-commits
Subject: 07/09: gnu: emacs-magit: Update to 2.13.1.
Date: Wed, 23 Jan 2019 03:51:41 -0500 (EST)

efraim pushed a commit to branch master
in repository guix.

commit d49d05342889f3a28c10bdc7d752835058b80309
Author: Efraim Flashner <address@hidden>
Date:   Wed Jan 23 10:38:19 2019 +0200

    gnu: emacs-magit: Update to 2.13.1.
    
    * gnu/packages/emacs-xyz.scm (emacs-magit): Update to 2.13.1.
    [source]: Use 'git-fetch'.
---
 gnu/packages/emacs-xyz.scm | 13 +++++++------
 1 file changed, 7 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 2897099..fce56ea 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -250,15 +250,16 @@ on stdout instead of using a socket as the Emacsclient 
does.")
 (define-public emacs-magit
   (package
     (name "emacs-magit")
-    (version "2.13.0")
+    (version "2.13.1")
     (source (origin
-             (method url-fetch)
-             (uri (string-append
-                   "https://github.com/magit/magit/releases/download/";
-                   version "/magit-" version ".tar.gz"))
+             (method git-fetch)
+             (uri (git-reference
+                    (url "https://github.com/magit/magit";)
+                    (commit version)))
+             (file-name (git-file-name name version))
              (sha256
               (base32
-               "1ygaah3dd3nxpyd17297xgvdcgr7pgzzwlmpnmchki0kiwgg3sbc"))))
+               "1kmjjcvhcb21qi6kmrlhf92ync8va5l41n9ban8kj25h7dbqyiym"))))
     (build-system gnu-build-system)
     (native-inputs `(("texinfo" ,texinfo)
                      ("emacs" ,emacs-minimal)))



reply via email to

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