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.
This commit is contained in:
Tobias Geerinckx-Rice 2019-04-08 23:24:43 +02:00
parent 7896c19c1c
commit f782bf4a40
No known key found for this signature in database
GPG key ID: 0DB0FF884F556D79

View file

@ -6316,14 +6316,13 @@ (define-public emacs-idle-highlight
(version "1.1.3") (version "1.1.3")
(source (source
(origin (origin
(method url-fetch) (method git-fetch)
(uri (string-append (uri (git-reference
"https://github.com/nonsequitur/idle-highlight-mode/archive/" (url "https://github.com/nonsequitur/idle-highlight-mode.git")
version ".tar.gz")) (commit version)))
(file-name (string-append name "-" version ".tar.gz")) (file-name (git-file-name name version))
(sha256 (sha256
(base32 (base32 "0x4w1ksrw7dicl84zpf4d4scg672dyan9g95jkn6zvri0lr8xciv"))))
"0kdv10hrgqpskjh0zvpnzwlkn5bccnqxas62gkws6njln57bf8nl"))))
(build-system emacs-build-system) (build-system emacs-build-system)
(home-page "https://www.emacswiki.org/emacs/IdleHighlight") (home-page "https://www.emacswiki.org/emacs/IdleHighlight")
(synopsis "Highlights all occurrences of the word the point is on") (synopsis "Highlights all occurrences of the word the point is on")