mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: guile-irc: Fix build.
* gnu/packages/guile-xyz.scm (guile-irc)[arguments]: Add 'fix-autogen.sh phase to patch shebang removing leading space. [inputs]: Add guile-gnutls. Signed-off-by: Christopher Baines <mail@cbaines.net>
This commit is contained in:
parent
8294d5a641
commit
1cb0dee3a3
1 changed files with 8 additions and 2 deletions
|
@ -4520,11 +4520,17 @@ (define-public guile-irc
|
|||
"1jx8704200l29ndg9bfyamgxrzknya0f0vwb2sxhd0k3b8r94avw"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
`(#:configure-flags '("--enable-gnutls=yes")))
|
||||
`(#:configure-flags '("--enable-gnutls=yes")
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-before 'bootstrap 'fix-autogen.sh
|
||||
(lambda _
|
||||
(substitute* "autogen.sh"
|
||||
((" #!") "#!")))))))
|
||||
(native-inputs
|
||||
(list autoconf automake texinfo pkg-config))
|
||||
(inputs
|
||||
(list gnutls guile-3.0))
|
||||
(list gnutls guile-gnutls guile-3.0))
|
||||
(home-page "https://github.com/rekado/guile-irc")
|
||||
(synopsis "IRC library for Guile")
|
||||
(description "This package provides a Guile library for @dfn{Internet
|
||||
|
|
Loading…
Reference in a new issue