mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-20 06:37:08 +01:00
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 @@ (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")
|
||||
|
|
Loading…
Reference in a new issue