mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-14 19:05:10 -05:00
gnu: emacs-logview: Don't use unstable tarball.
* gnu/packages/emacs-xyz.scm (emacs-logview)[source]: Use GIT-FETCH and GIT-FILE-NAME.
This commit is contained in:
parent
bb926860bf
commit
f93f4d508c
1 changed files with 9 additions and 9 deletions
|
@ -10524,15 +10524,15 @@ (define-public emacs-logview
|
||||||
(package
|
(package
|
||||||
(name "emacs-logview")
|
(name "emacs-logview")
|
||||||
(version "0.9")
|
(version "0.9")
|
||||||
(source (origin
|
(source
|
||||||
(method url-fetch)
|
(origin
|
||||||
(uri (string-append
|
(method git-fetch)
|
||||||
"https://github.com/doublep/logview/archive/"
|
(uri (git-reference
|
||||||
version ".tar.gz"))
|
(url "https://github.com/doublep/logview.git")
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(commit version)))
|
||||||
(sha256
|
(file-name (git-file-name name version))
|
||||||
(base32
|
(sha256
|
||||||
"1vd11ppm46ldqsiwhqgw91p34gbjh1y82r9mxcn9r2gj65nvhxcp"))))
|
(base32 "1qhzs75pxnaksbhczmpdcy2zmrqavlzkzss7ik5nv2wf9vs0sn02"))))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
`(("emacs-datetime" ,emacs-datetime)))
|
`(("emacs-datetime" ,emacs-datetime)))
|
||||||
(build-system emacs-build-system)
|
(build-system emacs-build-system)
|
||||||
|
|
Loading…
Reference in a new issue