Archived
1
0
Fork 0

gnu: emacs-better-defaults: Don't use unstable tarball.

* gnu/packages/emacs-xyz.scm (emacs-better-defaults)[source]: Download
using git-fetch.
This commit is contained in:
Efraim Flashner 2019-11-26 20:31:33 +02:00
parent 4a3df6c8e1
commit fbb162de75
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -5937,13 +5937,14 @@ possible to query other endpoints like DBPedia.")
(version "0.1.3") (version "0.1.3")
(source (source
(origin (origin
(method url-fetch) (method git-fetch)
(uri (string-append "https://github.com/technomancy/better-defaults" (uri (git-reference
"/archive/" version ".tar.gz")) (url "https://github.com/technomancy/better-defaults")
(file-name (string-append name "-" version ".tar.gz")) (commit version)))
(file-name (git-file-name name version))
(sha256 (sha256
(base32 (base32
"08fg4zslzlxbvyil5g4gwvwd22fh4zsgqprs5wh9hv1rgc6757m2")))) "1rxznx2l0cdpiz8mad8s6q17m1fngpgb1cki7ch6yh18r3qz8ysr"))))
(build-system emacs-build-system) (build-system emacs-build-system)
(home-page "https://github.com/technomancy/better-defaults") (home-page "https://github.com/technomancy/better-defaults")
(synopsis "Better defaults for Emacs") (synopsis "Better defaults for Emacs")