mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: dovecot: Update to 2.2.26.0.
* gnu/packages/mail.scm (dovecot): Update to 2.2.26.0. [arguments]: Patch shebangs in test file.
This commit is contained in:
parent
683c5ab70a
commit
072f1e22cc
1 changed files with 11 additions and 2 deletions
|
@ -933,7 +933,7 @@ (define-public exim
|
|||
(define-public dovecot
|
||||
(package
|
||||
(name "dovecot")
|
||||
(version "2.2.25")
|
||||
(version "2.2.26.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
|
@ -941,7 +941,7 @@ (define-public dovecot
|
|||
(version-major+minor version) "/"
|
||||
name "-" version ".tar.gz"))
|
||||
(sha256 (base32
|
||||
"0rwn5wc5b8j9fzqcjggdgpzmb77myrf4ra294z1gg5v3hhng7nfq"))))
|
||||
"01bgj8b2whi35ghbxb19nmr3xvx2zgjzxxw1crgx2v73kprs34pn"))))
|
||||
(build-system gnu-build-system)
|
||||
(native-inputs
|
||||
`(("pkg-config" ,pkg-config)))
|
||||
|
@ -963,6 +963,15 @@ (define-public dovecot
|
|||
"doc/example-config/Makefile.in")
|
||||
(("pkgsysconfdir = .*")
|
||||
"pkgsysconfdir = /tmp/etc"))
|
||||
#t))
|
||||
(add-after
|
||||
'unpack 'patch-other-shebangs
|
||||
(lambda _
|
||||
(substitute*
|
||||
"src/lib-program-client/test-program-client-local.c"
|
||||
(("/bin/echo") (which "echo"))
|
||||
(("/bin/cat") (which "cat"))
|
||||
(("/bin/false") (which "false")))
|
||||
#t)))))
|
||||
(home-page "http://www.dovecot.org")
|
||||
(synopsis "Secure POP3/IMAP server")
|
||||
|
|
Loading…
Reference in a new issue