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 @@ (define-public emacs-better-defaults
(version "0.1.3")
(source
(origin
(method url-fetch)
(uri (string-append "https://github.com/technomancy/better-defaults"
"/archive/" version ".tar.gz"))
(file-name (string-append name "-" version ".tar.gz"))
(method git-fetch)
(uri (git-reference
(url "https://github.com/technomancy/better-defaults")
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32
"08fg4zslzlxbvyil5g4gwvwd22fh4zsgqprs5wh9hv1rgc6757m2"))))
"1rxznx2l0cdpiz8mad8s6q17m1fngpgb1cki7ch6yh18r3qz8ysr"))))
(build-system emacs-build-system)
(home-page "https://github.com/technomancy/better-defaults")
(synopsis "Better defaults for Emacs")