guix-commits
[Top][All Lists]
Advanced

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

83/203: gnu: emacs-idle-highlight: Don't use unstable tarball.


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

nckx pushed a commit to branch master
in repository guix.

commit f782bf4a4024faeb138a6be6584a9af6d4482689
Author: Tobias Geerinckx-Rice <address@hidden>
Date:   Mon Apr 8 23:24:43 2019 +0200

    gnu: emacs-idle-highlight: Don't use unstable tarball.
    
    * gnu/packages/emacs-xyz.scm (emacs-idle-highlight)[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 e73b20c..eef9006 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -6316,14 +6316,13 @@ number on the left margin in Emacs.")
     (version "1.1.3")
     (source
      (origin
-       (method url-fetch)
-       (uri (string-append
-             "https://github.com/nonsequitur/idle-highlight-mode/archive/";
-             version ".tar.gz"))
-       (file-name (string-append name "-" version ".tar.gz"))
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/nonsequitur/idle-highlight-mode.git";)
+             (commit version)))
+       (file-name (git-file-name name version))
        (sha256
-        (base32
-         "0kdv10hrgqpskjh0zvpnzwlkn5bccnqxas62gkws6njln57bf8nl"))))
+        (base32 "0x4w1ksrw7dicl84zpf4d4scg672dyan9g95jkn6zvri0lr8xciv"))))
     (build-system emacs-build-system)
     (home-page "https://www.emacswiki.org/emacs/IdleHighlight";)
     (synopsis "Highlights all occurrences of the word the point is on")



reply via email to

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