guix-commits
[Top][All Lists]
Advanced

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

06/30: gnu: emacs-tide: Don't use unstable tarball.


From: guix-commits
Subject: 06/30: gnu: emacs-tide: Don't use unstable tarball.
Date: Tue, 25 Jun 2019 02:56:19 -0400 (EDT)

ngz pushed a commit to branch master
in repository guix.

commit fe8a31427144fbc773023071735455abe4b66183
Author: Brian Leung <address@hidden>
Date:   Sat Jun 15 03:28:54 2019 +0200

    gnu: emacs-tide: Don't use unstable tarball.
    
    * gnu/packages/emacs-xyz.scm (emacs-tide)[source]: Use GIT-FETCH and 
GIT-FILE-NAME.
---
 gnu/packages/emacs-xyz.scm | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 8e5e3b5..961801b 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -5161,13 +5161,14 @@ indentation and filling of comments and C preprocessor 
fontification.")
     (name "emacs-tide")
     (version "3.2.3")
     (source (origin
-              (method url-fetch)
-              (uri (string-append "https://github.com/ananthakumaran/tide";
-                                  "/archive/v" version ".tar.gz"))
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/ananthakumaran/tide";)
+                    (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
               (sha256
                (base32
-                "1c600myr2yqbkmy9lify38lz0zzjdqk1733db5n7vsay16vn6fzi"))
-              (file-name (string-append name "-" version ".tar.gz"))))
+                "19kjq4kr2j853p5qp1s79zxmrfprli82lsnphbrlp9vbnib28xyd"))))
     (build-system emacs-build-system)
     (propagated-inputs
      `(("emacs-dash" ,emacs-dash)



reply via email to

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