diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-04-04 20:16:33 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-04-10 20:54:01 +0200 |
commit | d98ac61b64657dc1ce0791efaeda08a04d78c017 (patch) | |
tree | 6e3c111fe24dc6c1ef77182ae548c59fa8804f3d | |
parent | 7d41e3737dafc1ea6fa8d2ecbc6059e3080608d2 (diff) | |
download | patches-d98ac61b64657dc1ce0791efaeda08a04d78c017.tar patches-d98ac61b64657dc1ce0791efaeda08a04d78c017.tar.gz |
gnu: emacs-company: Don't use unstable tarball.
* gnu/packages/emacs-xyz.scm (emacs-company)[source]: Use GIT-FETCH and
GIT-FILE-NAME.
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index aa40074d99..b26293bf35 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -2787,13 +2787,13 @@ build jobs.") (version "0.9.7") (source (origin - (method url-fetch) - (uri (string-append "https://github.com/company-mode/company-mode/archive/" - version ".tar.gz")) - (file-name (string-append name "-" version ".tar.gz")) + (method git-fetch) + (uri (git-reference + (url "https://github.com/company-mode/company-mode.git") + (commit version))) + (file-name (git-file-name name version)) (sha256 - (base32 - "19flv38f2qhxda8lbk2ckywvibd72vbzmn4hchqz6d8acsknh4sb")))) + (base32 "1gpapjxs4l6fmmj22q0q1pyhj1yd9j5iqfqnjf1abskkj69lqkpj")))) (build-system emacs-build-system) (arguments `(#:phases |