guix-commits
[Top][All Lists]
Advanced

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

01/09: gnu: emacs-git-modes: Don't use unstable tarball.


From: guix-commits
Subject: 01/09: gnu: emacs-git-modes: Don't use unstable tarball.
Date: Wed, 23 Jan 2019 03:51:40 -0500 (EST)

efraim pushed a commit to branch master
in repository guix.

commit 8b9fab8f764890d049350c3615f51ee825667402
Author: Efraim Flashner <address@hidden>
Date:   Wed Jan 23 09:38:33 2019 +0200

    gnu: emacs-git-modes: Don't use unstable tarball.
    
    * gnu/packages/emacs-xyz.scm (emacs-git-mode)[source]: Use 'git-fetch'.
---
 gnu/packages/emacs-xyz.scm | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 2a811e5..fd5f84c 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -203,14 +203,14 @@ when typing parentheses directly or commenting out code 
line by line.")
     (name "emacs-git-modes")
     (version "1.2.8")
     (source (origin
-              (method url-fetch)
-              (uri (string-append
-                    "https://github.com/magit/git-modes/archive/";
-                    version ".tar.gz"))
-              (file-name (string-append name "-" version ".tar.gz"))
+              (method git-fetch)
+              (uri (git-reference
+                     (url "https://github.com/magit/git-modes";)
+                     (commit version)))
+              (file-name (git-file-name name version))
               (sha256
                (base32
-                "0h49f68yn0q4lg054adqii4qja1z2pzybm7nf4kvpq7fzjrzgv1q"))))
+                "08hy7rbfazs6grkpk54i82bz0i0c74zcjk96cip8970h6jn3mj72"))))
     (build-system emacs-build-system)
     (home-page "https://github.com/magit/git-modes";)
     (synopsis "Emacs major modes for Git configuration files")



reply via email to

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