mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 06:18:07 -05:00
gnu: emacs-validate: Don't use unstable tarball.
* gnu/packages/emacs-xyz.scm (emacs-validate)[source]: Download using git-fetch.
This commit is contained in:
parent
2e1afa2a7c
commit
c75d100858
1 changed files with 6 additions and 5 deletions
|
@ -12663,13 +12663,14 @@ (define-public emacs-validate
|
|||
(name "emacs-validate")
|
||||
(version "1.0.5")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://github.com/Malabarba/validate.el"
|
||||
"/archive/" version ".tar.gz"))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/Malabarba/validate.el")
|
||||
(commit version)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"125mbd111f1h1baw0z3fzm48y1bvaigljyzvvnqgrn0shxbj0khg"))))
|
||||
"1l12ibx6cw4mgicgjpw71fb4fr4sd0k54lvbpq7ngc29br3j6i4v"))))
|
||||
(build-system emacs-build-system)
|
||||
(home-page "https://github.com/Malabarba/validate.el")
|
||||
(synopsis "Emacs library for scheme validation")
|
||||
|
|
Loading…
Reference in a new issue