nckx pushed a commit to branch master
in repository guix.
commit fb71e5a83d317217c3d9d93fe9bbb49cc399fa10
Author: Tobias Geerinckx-Rice <[email protected]>
AuthorDate: Sat Nov 21 13:41:31 2020 +0100
gnu: inspircd: Make most inputs non-native.
* gnu/packages/irc.scm (inspircd)[native-inputs]: Reduce to pkg-config.
Move the rest…
[inputs]: …here.
---
gnu/packages/irc.scm | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/irc.scm b/gnu/packages/irc.scm
index 48ed9c0..c102e73 100644
--- a/gnu/packages/irc.scm
+++ b/gnu/packages/irc.scm
@@ -549,15 +549,16 @@ interface for those who are accustomed to the ircII way
of doing things.")
(string-append "--config-dir=" out-etc name)))
#t)))))
(native-inputs
+ `(("pkg-config" ,pkg-config)))
+ (inputs
`(("gnutls" ,gnutls)
("libmaxminddb" ,libmaxminddb)
- ("mysql" ,mysql)
("mbedtls-apache" ,mbedtls-apache)
+ ("mysql" ,mysql)
("openldap" ,openldap)
("openssl" ,openssl)
("pcre" ,pcre "bin")
("perl" ,perl)
- ("pkg-config" ,pkg-config)
("postgresql" ,postgresql)
("re2" ,re2)
("sqlite" ,sqlite)