guix-commits
[Top][All Lists]
Advanced

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

05/08: gnu: emacs-f: Don't use unstable tarball.


From: Tobias Geerinckx-Rice
Subject: 05/08: gnu: emacs-f: Don't use unstable tarball.
Date: Mon, 20 Aug 2018 12:01:08 -0400 (EDT)

nckx pushed a commit to branch master
in repository guix.

commit bd0570f21d6b49c251becc393c95ce8d744a8f9d
Author: Tobias Geerinckx-Rice <address@hidden>
Date:   Mon Aug 20 13:06:59 2018 +0200

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

diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index c144437..6fe881c 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -1878,14 +1878,14 @@ Stack Overflow, Super User, and other StackExchange 
sites.")
     (name "emacs-f")
     (version "0.19.0")
     (source (origin
-              (method url-fetch)
-              (uri (string-append
-                    "https://github.com/rejeep/f.el/archive/v";
-                    version ".tar.gz"))
-              (file-name (string-append name "-" version ".tar.gz"))
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/rejeep/f.el.git";)
+                    (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
               (sha256
                (base32
-                "05195n80ywa68qykxn7dza6qd59rhakvlzhaa9l6mcpmjf9l9grs"))))
+                "1j6gc2pp5w3iwyjm4h3d0ahzs0ac3pah8lzfhpg4nkibl0nc1bcg"))))
     (build-system emacs-build-system)
     (propagated-inputs
      `(("emacs-s" ,emacs-s)



reply via email to

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