guix-commits
[Top][All Lists]
Advanced

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

108/203: gnu: emacs-which-key: Don't use unstable tarball.


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

nckx pushed a commit to branch master
in repository guix.

commit 5ff1137b9cc7d0f0a637fe54e95003027e1e2e93
Author: Tobias Geerinckx-Rice <address@hidden>
Date:   Mon Apr 8 23:29:55 2019 +0200

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

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 46ccc83..fb4f6f0 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -7594,14 +7594,13 @@ or @code{treemacs}, but leveraging @code{Dired} to do 
the job of display.")
     (version "3.3.1")
     (source
      (origin
-       (method url-fetch)
-       (uri (string-append
-             "https://github.com/justbur/emacs-which-key/archive/v";
-             version ".tar.gz"))
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/justbur/emacs-which-key.git";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
        (sha256
-        (base32
-         "1g8k0js21bc8mlw6hvmg93zgfjhil77c30cv1hf85y4qb9ldvika"))
-       (file-name (string-append name "-" version ".tar.gz"))))
+        (base32 "1dh6kr00wmql46whjkvnl953zngiv5j99ypvr1b3cb2174623afb"))))
     (build-system emacs-build-system)
     (arguments
      `(#:tests? #t



reply via email to

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