mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-20 06:37:08 +01:00
gnu: emacs-pretty-mode: Don't use unstable tarball.
* gnu/packages/emacs-xyz.scm (emacs-pretty-mode)[source]: Download using git-fetch.
This commit is contained in:
parent
ed1ff94fe2
commit
7335f4617c
1 changed files with 6 additions and 5 deletions
|
@ -8472,13 +8472,14 @@ (define-public emacs-pretty-mode
|
||||||
(version "2.0.3")
|
(version "2.0.3")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (string-append "https://github.com/akatov/pretty-mode/"
|
(uri (git-reference
|
||||||
"archive/" version ".tar.gz"))
|
(url "https://github.com/akatov/pretty-mode/")
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(commit version)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1fan7m4vnqs8kpg7r54kx3g7faadkpkf9kzarfv8n57kq8w157pl"))))
|
"013fig9i4fyx16krp2vfv953p3rwdzr38zs6i50af4pqz4vrcfvh"))))
|
||||||
(build-system emacs-build-system)
|
(build-system emacs-build-system)
|
||||||
(home-page "https://github.com/akatov/pretty-mode")
|
(home-page "https://github.com/akatov/pretty-mode")
|
||||||
(synopsis "Redisplay parts of the buffer as Unicode symbols")
|
(synopsis "Redisplay parts of the buffer as Unicode symbols")
|
||||||
|
|
Loading…
Reference in a new issue