gnu: emacs-git-gutter: Don't use unstable tarball.

* gnu/packages/emacs-xyz.scm (emacs-git-gutter)[source]: Use GIT-FETCH and
GIT-FILE-NAME.
master
Tobias Geerinckx-Rice 2019-03-31 03:48:52 +02:00
parent 866b23f858
commit 1acdb763a0
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79
1 changed files with 9 additions and 9 deletions

View File

@ -2025,15 +2025,15 @@ files and directories.")
(package
(name "emacs-git-gutter")
(version "0.90")
(source (origin
(method url-fetch)
(uri (string-append
"https://github.com/syohex/" name "/archive/"
version ".tar.gz"))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"1nmhvhpq1l56mj2yq3ag23rw3x4xgnsy8szp30s26l0yjnkhc4qg"))))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/syohex/emacs-git-gutter.git")
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32 "1abagq0psip7cgsqbfjv72qy60ywsny0ibsfcn74ldj6a9v17mz5"))))
(build-system emacs-build-system)
(home-page "https://github.com/syohex/emacs-git-gutter")
(synopsis "See and manage hunks of text in a version control system")