diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-04-08 23:26:12 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-04-10 20:54:08 +0200 |
commit | b206798dd3d444d4df08727227ba03acd5bb6f0e (patch) | |
tree | ad907e48bf1e0fa43a1bc767f08b339a7617baf9 | |
parent | cff1177027e2849a28f444aba2cd227b5f8547f1 (diff) | |
download | guix-b206798dd3d444d4df08727227ba03acd5bb6f0e.tar.gz |
gnu: emacs-pos-tip: Don't use unstable tarball.
* gnu/packages/emacs-xyz.scm (emacs-pos-tip)[source]: Use GIT-FETCH and GIT-FILE-NAME.
-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 d99f842e88..4fc4944b21 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -6747,15 +6747,15 @@ browser.") (package (name "emacs-pos-tip") (version "0.4.6") - (source (origin - (method url-fetch) - (uri (string-append - "https://github.com/pitkali/pos-tip/archive/" - version ".tar.gz")) - (file-name (string-append name "-" version ".tar.gz")) - (sha256 - (base32 - "12jqfy26vjk7lq0aa8yn8zqj8c85fkvx7y9prj0pcn4wqiz2ad2r")))) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pitkali/pos-tip.git") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0w8bnspnk871qndp18hs0wk4x9x31xr9rwbvf5dc8mcbnj29ch33")))) (build-system emacs-build-system) ;; The following functions and variables needed by emacs-pos-tip are ;; not included in emacs-minimal: |