diff options
author | Christopher Baines <mail@cbaines.net> | 2023-05-06 14:29:09 +0100 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2023-05-06 14:30:47 +0100 |
commit | 1cb0dee3a31c6d235389d4d9787fa583c2babc30 (patch) | |
tree | 9d66189da43c4f83d11aab79823b299187ffe501 /gnu | |
parent | 8294d5a64194ed324fdea1b24426084dbb8901bb (diff) |
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>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/guile-xyz.scm | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm index 5c169dca08..6462ee7963 100644 --- a/gnu/packages/guile-xyz.scm +++ b/gnu/packages/guile-xyz.scm @@ -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 |