mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 23:06:59 +01:00
gnu: emacs-m-buffer-el: Don't use unstable tarball.
* gnu/packages/emacs-xyz.scm (emacs-m-buffer-el)[source]: Download using git-fetch.
This commit is contained in:
parent
c75d100858
commit
b8e4626542
1 changed files with 6 additions and 5 deletions
|
@ -13037,13 +13037,14 @@ (define-public emacs-m-buffer-el
|
|||
(version "0.15")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://github.com/phillord/m-buffer-el"
|
||||
"/archive/" "v" version ".tar.gz"))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/phillord/m-buffer-el")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"17vdcc8q37q9db98jyww1c0ivinmwfcw4l04zccfacalra63a214"))))
|
||||
"1sx76i59razwccvn6x7rx5a124bfyjw9fcbxf4gj7nsg33qiq809"))))
|
||||
(arguments
|
||||
`(#:phases
|
||||
(modify-phases %standard-phases
|
||||
|
|
Loading…
Reference in a new issue