diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-04-08 23:23:31 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-04-10 20:54:06 +0200 |
commit | 4f37ade08ac069bb79722e41bdb6c2fb8a4d6061 (patch) | |
tree | 7d2e0b8346fd5ac0b7333449bde1f335b0a2384e | |
parent | 76a18a0cbb4cc4c5af922259843794f07a11f5e6 (diff) | |
download | guix-4f37ade08ac069bb79722e41bdb6c2fb8a4d6061.tar guix-4f37ade08ac069bb79722e41bdb6c2fb8a4d6061.tar.gz |
gnu: emacs-log4e: Don't use unstable tarball.
* gnu/packages/emacs-xyz.scm (emacs-log4e)[source]: Use GIT-FETCH and
GIT-FILE-NAME.
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 60166b6d59..2e43411b62 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -5971,14 +5971,13 @@ provides functions to convert hash tables from and to alists and plists.") (version "0.3.0") (source (origin - (method url-fetch) - (uri (string-append - "https://github.com/aki2o/log4e/archive/v" - version ".tar.gz")) - (file-name (string-append name "-" version ".tar.gz")) + (method git-fetch) + (uri (git-reference + (url "https://github.com/aki2o/log4e.git") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) (sha256 - (base32 - "0nbdpbw353snda3v19l9hsm6gimppwnpxj18amm350bm81lyim2g")))) + (base32 "1l28n7a0v2zkknc70i1wn6qb5i21dkhfizzk8wcj28v44cgzk022")))) (build-system emacs-build-system) (arguments `(#:phases |