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>master
parent
8294d5a641
commit
1cb0dee3a3
|
@ -4520,11 +4520,17 @@ according to Bitorrent BEP003.")
|
|||
"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
|
||||
|
|
Reference in New Issue