diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-03-31 03:48:52 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-04-10 20:53:57 +0200 |
commit | 1acdb763a03ab062aa176b8aeb54dfe02a592097 (patch) | |
tree | d20809f288da4f89f446c151ddce50c9f82686c4 /gnu | |
parent | 866b23f858214e38258a839bfabd04368eaa6302 (diff) | |
download | patches-1acdb763a03ab062aa176b8aeb54dfe02a592097.tar patches-1acdb763a03ab062aa176b8aeb54dfe02a592097.tar.gz |
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.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 7e3f6d03bf..ae120319dd 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -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") |