gnu: emacs-git-modes: Don't use unstable tarball.
* gnu/packages/emacs-xyz.scm (emacs-git-mode)[source]: Use 'git-fetch'.
This commit is contained in:
parent
07725a0a66
commit
8b9fab8f76
|
@ -203,14 +203,14 @@ when typing parentheses directly or commenting out code line by line.")
|
||||||
(name "emacs-git-modes")
|
(name "emacs-git-modes")
|
||||||
(version "1.2.8")
|
(version "1.2.8")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (string-append
|
(uri (git-reference
|
||||||
"https://github.com/magit/git-modes/archive/"
|
(url "https://github.com/magit/git-modes")
|
||||||
version ".tar.gz"))
|
(commit version)))
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0h49f68yn0q4lg054adqii4qja1z2pzybm7nf4kvpq7fzjrzgv1q"))))
|
"08hy7rbfazs6grkpk54i82bz0i0c74zcjk96cip8970h6jn3mj72"))))
|
||||||
(build-system emacs-build-system)
|
(build-system emacs-build-system)
|
||||||
(home-page "https://github.com/magit/git-modes")
|
(home-page "https://github.com/magit/git-modes")
|
||||||
(synopsis "Emacs major modes for Git configuration files")
|
(synopsis "Emacs major modes for Git configuration files")
|
||||||
|
|
Loading…
Reference in New Issue