diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-03-31 03:48:43 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-04-10 20:53:57 +0200 |
commit | 866b23f858214e38258a839bfabd04368eaa6302 (patch) | |
tree | 29f7b9202c10b9017c4f79e177a167168ebd75d6 | |
parent | 1e2d1712ea6ff37b4ca2e0f4c79e09cfa14ff050 (diff) | |
download | guix-866b23f858214e38258a839bfabd04368eaa6302.tar.gz |
gnu: emacs-symon: Don't use unstable tarball.
* gnu/packages/emacs-xyz.scm (emacs-symon)[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 186ad73f97..7e3f6d03bf 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -1957,13 +1957,13 @@ strings.") (version "20160630") (source (origin - (method url-fetch) - (uri (string-append "https://github.com/zk-phi/symon/archive/" - version ".tar.gz")) - (file-name (string-append name "-" version ".tar.gz")) + (method git-fetch) + (uri (git-reference + (url "https://github.com/zk-phi/symon.git") + (commit version))) + (file-name (git-file-name name version)) (sha256 - (base32 - "0h4jcgdnq98wc9rj72nwyazq8498yg55jfljiij5qwbn1xf1g5zz")))) + (base32 "1q7di9s8k710nx98wnqnbkkhdimrn0jf6z4xkm4c78l6s5idjwlz")))) (build-system emacs-build-system) (home-page "https://github.com/zk-phi/symon") (synopsis "Tiny graphical system monitor") |