diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-06-25 14:20:02 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-06-25 16:24:11 +0200 |
commit | d7463e012555047615193afcfd8294381f050825 (patch) | |
tree | 7d89dfdbe824168b209256f8d9101b527b5a50e7 /gnu/packages/messaging.scm | |
parent | 591464e3654f1e45427a1aa94b69a28445ceb556 (diff) | |
download | guix-d7463e012555047615193afcfd8294381f050825.tar guix-d7463e012555047615193afcfd8294381f050825.tar.gz |
gnu: znc: Don't refer to native-inputs.
* gnu/packages/messaging.scm (znc)[native-inputs]: Move run-time perl & python…
[inputs]: …here, in alphabetical order.
Diffstat (limited to 'gnu/packages/messaging.scm')
-rw-r--r-- | gnu/packages/messaging.scm | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm index e4f150c817..c4fd1f535f 100644 --- a/gnu/packages/messaging.scm +++ b/gnu/packages/messaging.scm @@ -518,14 +518,14 @@ compromised.") #:test-target "test")) (native-inputs `(("googletest-source" ,(package-source googletest)) - ("pkg-config" ,pkg-config) - ("perl" ,perl) - ("python" ,python))) + ("pkg-config" ,pkg-config))) (inputs - `(("openssl" ,openssl) - ("zlib" ,zlib) + `(("cyrus-sasl" ,cyrus-sasl) ("icu4c" ,icu4c) - ("cyrus-sasl" ,cyrus-sasl))) + ("openssl" ,openssl) + ("perl" ,perl) + ("python" ,python) + ("zlib" ,zlib))) (home-page "https://znc.in") (synopsis "IRC network bouncer") (description "ZNC is an @dfn{IRC network bouncer} or @dfn{BNC}. It can |