diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-10-25 21:42:25 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-10-25 23:22:50 +0200 |
commit | cb9744f5de89faf4d710a37ae0cb4b34f573a52c (patch) | |
tree | 66d8e278dcf5ca1dfce56fe483dbe5bfc59260ae | |
parent | c9fc03a3aa01a0058b202ef2f34be0e9e8474f22 (diff) | |
download | patches-cb9744f5de89faf4d710a37ae0cb4b34f573a52c.tar patches-cb9744f5de89faf4d710a37ae0cb4b34f573a52c.tar.gz |
gnu: neomutt: Don't use unstable tarball.
* gnu/packages/mail.scm (neomutt)[source]: Use GIT-FETCH and
GIT-FILE-NAME.
-rw-r--r-- | gnu/packages/mail.scm | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm index 578a5c07fa..21d270252f 100644 --- a/gnu/packages/mail.scm +++ b/gnu/packages/mail.scm @@ -395,12 +395,13 @@ operating systems.") (version "20180716") (source (origin - (method url-fetch) - (uri (string-append "https://github.com/" name "/" name - "/archive/" name "-" version ".tar.gz")) + (method git-fetch) + (uri (git-reference + (url "https://github.com/neomutt/neomutt.git") + (commit (string-append "neomutt-" version)))) + (file-name (git-file-name name version)) (sha256 - (base32 - "0072in2d6znwqq461shsaxlf40r4zr7w3j9848qvm4xlh1lq52dx")))) + (base32 "0im2kkahkr04q04irvcimfawxi531ld6wrsa92r2m7l10gmijkl8")))) (build-system gnu-build-system) (inputs `(("cyrus-sasl" ,cyrus-sasl) |