guix-commits
[Top][All Lists]
Advanced

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

71/203: gnu: emacs-helm: Don't use unstable tarball.


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

nckx pushed a commit to branch master
in repository guix.

commit fb2f89b6d3502ee3611fff8ad56c0064fccb9198
Author: Tobias Geerinckx-Rice <address@hidden>
Date:   Mon Apr 8 23:22:08 2019 +0200

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

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 178c80d..43a5ae1 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -5298,15 +5298,15 @@ ack, ag, helm and pt.")
   (package
     (name "emacs-helm")
     (version "3.1")
-    (source (origin
-              (method url-fetch)
-              (uri (string-append
-                    "https://github.com/"; name "/helm/archive/v"
-                    version ".tar.gz"))
-              (file-name (string-append name "-" version ".tar.gz"))
-              (sha256
-               (base32
-                "0ymykcsbcgq2kskqc0ddigg0kfznxx3j02mkd5r3c3n8gn3kgz84"))))
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/emacs-helm/helm.git";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1x3nv8zvp8vvl30bm2d83hd7zxb0ca64pc8kwb81ml9al6r3mm01"))))
     (build-system emacs-build-system)
     (propagated-inputs
      `(("emacs-async" ,emacs-async)



reply via email to

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