diff options
| author | Cayetano Santos <csantosb@inventati.org> | 2026-07-04 17:04:10 +0200 |
|---|---|---|
| committer | Cayetano Santos <csantosb@inventati.org> | 2026-07-04 18:27:07 +0200 |
| commit | da983d3315cf798325ccb1fd75fba72567bf9936 (patch) | |
| tree | f361c0cdea68c00f8375a904051762288d9290b1 /gnu/packages/mail.scm | |
| parent | b0bcb0055c08c36175a056a2724d9e2557a08558 (diff) | |
gnu: mutt: Switch to git-fetch.
* gnu/packages/mail.scm (mutt)[source]: Replace url-fetch with
git-fetch.
[native-inputs]: Add autoconf and automake.
Diffstat (limited to 'gnu/packages/mail.scm')
| -rw-r--r-- | gnu/packages/mail.scm | 27 |
1 files changed, 16 insertions, 11 deletions
diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm index 57c5f3b9cbe..ea75356cc85 100644 --- a/gnu/packages/mail.scm +++ b/gnu/packages/mail.scm | |||
| @@ -70,6 +70,7 @@ | |||
| 70 | ;;; Copyright © 2026 Nguyễn Gia Phong <cnx@loang.net> | 70 | ;;; Copyright © 2026 Nguyễn Gia Phong <cnx@loang.net> |
| 71 | ;;; Copyright © 2026 Herman Rimm <herman@rimm.ee> | 71 | ;;; Copyright © 2026 Herman Rimm <herman@rimm.ee> |
| 72 | ;;; Copyright © 2026 Artyom V. Poptsov <poptsov.artyom@gmail.com> | 72 | ;;; Copyright © 2026 Artyom V. Poptsov <poptsov.artyom@gmail.com> |
| 73 | ;;; Copyright © 2026 Cayetano Santos <csantosb@inventati.org> | ||
| 73 | ;;; | 74 | ;;; |
| 74 | ;;; This file is part of GNU Guix. | 75 | ;;; This file is part of GNU Guix. |
| 75 | ;;; | 76 | ;;; |
| @@ -804,18 +805,22 @@ aliasing facilities to work just as they would on normal mail.") | |||
| 804 | (package | 805 | (package |
| 805 | (name "mutt") | 806 | (name "mutt") |
| 806 | (version "2.2.14") | 807 | (version "2.2.14") |
| 807 | (source (origin | 808 | (source |
| 808 | (method url-fetch) | 809 | (origin |
| 809 | (uri (list | 810 | (method git-fetch) |
| 810 | (string-append "https://bitbucket.org/mutt/mutt/downloads/" | 811 | (uri (git-reference |
| 811 | "mutt-" version ".tar.gz") | 812 | (url "https://gitlab.com/muttmua/mutt") |
| 812 | (string-append "http://ftp.mutt.org/pub/mutt/mutt-" | 813 | (commit (string-append |
| 813 | version ".tar.gz"))) | 814 | "mutt-" |
| 814 | (sha256 | 815 | (string-replace-substring version "." "-") |
| 815 | (base32 | 816 | "-rel")))) |
| 816 | "1vqlvqjlldcrkb4m5nl44my0rfw7wsvlkyb2dwyz8fhy95nznqni")) | 817 | (file-name (git-file-name name version)) |
| 817 | (patches (search-patches "mutt-store-references.patch")))) | 818 | (sha256 |
| 819 | (base32 "1qmq4l8xrmgs3g2an5r6888ih7wrig7m2ib0dv4kajqlnk9bh54s")) | ||
| 820 | (patches (search-patches "mutt-store-references.patch")))) | ||
| 818 | (build-system gnu-build-system) | 821 | (build-system gnu-build-system) |
| 822 | (native-inputs | ||
| 823 | (list autoconf automake)) | ||
| 819 | (inputs | 824 | (inputs |
| 820 | (list cyrus-sasl | 825 | (list cyrus-sasl |
| 821 | gdbm | 826 | gdbm |
