mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: mail: Add 'bash' input for 'wrap-program'.
It is required for cross-compilation. * gnu/packages/mail.scm (astroid)[inputs]: Add 'bash-minimal'. (notifymuch)[inputs]: Likewise. (dkimproxy)[inputs]: Likewise. (swaks): Delete trailing #t. [inputs]: Add 'bash-minimal'. (mumi)[inputs]: Likewise. (public-inbox)[inputs]: Likewise. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Modified-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Change-Id: I0ebdd60a5b33725548850d53676d181e10c71103
This commit is contained in:
parent
53e466ad5f
commit
632834696b
1 changed files with 13 additions and 10 deletions
|
@ -1012,7 +1012,8 @@ (define-public astroid
|
|||
w3m
|
||||
xorg-server-for-tests))
|
||||
(inputs
|
||||
(list boost
|
||||
(list bash-minimal
|
||||
boost
|
||||
gmime
|
||||
gobject-introspection ; it is referenced
|
||||
gtkmm-3
|
||||
|
@ -1409,7 +1410,7 @@ (define-public notifymuch
|
|||
(file-name (string-append name "-" version "-checkout"))))
|
||||
(build-system python-build-system)
|
||||
(inputs
|
||||
(list python-notmuch python-pygobject gobject-introspection
|
||||
(list bash-minimal python-notmuch python-pygobject gobject-introspection
|
||||
libnotify gtk+))
|
||||
(arguments
|
||||
`(#:phases
|
||||
|
@ -2892,7 +2893,8 @@ (define-public dkimproxy
|
|||
"perl-net-dns"
|
||||
"perl-timedate"))))))))
|
||||
(inputs
|
||||
(list perl
|
||||
(list bash-minimal
|
||||
perl
|
||||
perl-crypt-openssl-rsa
|
||||
perl-cryptx
|
||||
perl-io-socket-inet6
|
||||
|
@ -3868,7 +3870,11 @@ (define-public swaks
|
|||
(base32 "131i2b1yxhnbqkfk4kky40pfanqw2c5lcgbnjhfqp5cvpawpk2ai"))))
|
||||
(build-system perl-build-system)
|
||||
(inputs
|
||||
(list perl-io-socket-inet6 perl-net-dns perl-net-ssleay perl-socket6)) ; used by perl-io-socket-inet6
|
||||
(list bash-minimal
|
||||
perl-io-socket-inet6
|
||||
perl-net-dns
|
||||
perl-net-ssleay
|
||||
perl-socket6)) ; used by perl-io-socket-inet6
|
||||
(arguments
|
||||
`(#:tests? #f ; no tests
|
||||
#:phases
|
||||
|
@ -3876,8 +3882,7 @@ (define-public swaks
|
|||
(add-after 'unpack 'set-build_version
|
||||
(lambda _
|
||||
(substitute* "swaks"
|
||||
(("\"DEVRELEASE\"") (format #f "\"~a\"" ,version)))
|
||||
#true))
|
||||
(("\"DEVRELEASE\"") (format #f "\"~a\"" ,version)))))
|
||||
(delete 'configure)
|
||||
(replace 'build
|
||||
(lambda _
|
||||
|
@ -3886,14 +3891,12 @@ (define-public swaks
|
|||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
(let ((out (assoc-ref outputs "out")))
|
||||
(install-file "swaks" (string-append out "/bin"))
|
||||
(install-file "swaks.1" (string-append out "/share/man/man1")))
|
||||
#t))
|
||||
(install-file "swaks.1" (string-append out "/share/man/man1")))))
|
||||
(add-after 'install 'wrap-program
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
(wrap-program (string-append (assoc-ref outputs "out")
|
||||
"/bin/swaks")
|
||||
`("PERL5LIB" ":" = (,(getenv "PERL5LIB"))))
|
||||
#t)))))
|
||||
`("PERL5LIB" ":" = (,(getenv "PERL5LIB")))))))))
|
||||
(home-page "https://jetmore.org/john/code/swaks/")
|
||||
(synopsis "Featureful SMTP test tool")
|
||||
(description "Swaks is a flexible, scriptable, transaction-oriented SMTP
|
||||
|
|
Loading…
Reference in a new issue