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:
parent
4a3df6c8e1
commit
fbb162de75
1 changed files with 6 additions and 5 deletions
|
@ -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")
|
||||||
|
|
Reference in a new issue