me
/
guix
Archived
1
0
Fork 0

gnu: emacs-validate: Don't use unstable tarball.

* gnu/packages/emacs-xyz.scm (emacs-validate)[source]: Download using
git-fetch.
master
Efraim Flashner 2019-11-26 20:49:55 +02:00
parent 2e1afa2a7c
commit c75d100858
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 6 additions and 5 deletions

View File

@ -12663,13 +12663,14 @@ region instead.")
(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")