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 @@ according to Bitorrent BEP003.")
|
||||||
"1jx8704200l29ndg9bfyamgxrzknya0f0vwb2sxhd0k3b8r94avw"))))
|
"1jx8704200l29ndg9bfyamgxrzknya0f0vwb2sxhd0k3b8r94avw"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(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
|
(native-inputs
|
||||||
(list autoconf automake texinfo pkg-config))
|
(list autoconf automake texinfo pkg-config))
|
||||||
(inputs
|
(inputs
|
||||||
(list gnutls guile-3.0))
|
(list gnutls guile-gnutls guile-3.0))
|
||||||
(home-page "https://github.com/rekado/guile-irc")
|
(home-page "https://github.com/rekado/guile-irc")
|
||||||
(synopsis "IRC library for Guile")
|
(synopsis "IRC library for Guile")
|
||||||
(description "This package provides a Guile library for @dfn{Internet
|
(description "This package provides a Guile library for @dfn{Internet
|
||||||
|
|
Reference in a new issue