guix-commits
[Top][All Lists]
Advanced

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

63/203: gnu: emacs-elfeed: Don't use unstable tarball.


From: guix-commits
Subject: 63/203: gnu: emacs-elfeed: Don't use unstable tarball.
Date: Wed, 10 Apr 2019 14:57:20 -0400 (EDT)

nckx pushed a commit to branch master
in repository guix.

commit bde24d5e409c007d631801bc76fa805921739e79
Author: Tobias Geerinckx-Rice <address@hidden>
Date:   Fri Apr 5 04:17:52 2019 +0200

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

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 102d80e..06e9d5b 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -4822,14 +4822,15 @@ If you want to mark a folder manually as a project just 
create an empty
   (package
     (name "emacs-elfeed")
     (version "3.0.0")
-    (source (origin
-              (method url-fetch)
-              (uri (string-append "https://github.com/skeeto/elfeed/archive/";
-                                  version ".tar.gz"))
-              (file-name (string-append name "-" version ".tar.gz"))
-              (sha256
-               (base32
-                "1wkdrxr6zzqb48czqqv34l87bx8aqjk1739ddqg933aqh241kfvn"))))
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/skeeto/elfeed.git";)
+             (commit version)))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "01x4ww63lvn04c7f3ab5vx2s20xqisvv8213qwswz7vr9nxja5yi"))))
     (build-system emacs-build-system)
     (arguments
      `(#:tests? #t



reply via email to

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