[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
07/11: gnu: inspircd: Support Argon2 hashes.
From: |
guix-commits |
Subject: |
07/11: gnu: inspircd: Support Argon2 hashes. |
Date: |
Sat, 21 Nov 2020 17:00:52 -0500 (EST) |
nckx pushed a commit to branch master
in repository guix.
commit c5fcdb5cf7de57c7575f90a2632dd391181c5924
Author: Tobias Geerinckx-Rice <me@tobias.gr>
AuthorDate: Sat Nov 21 13:43:23 2020 +0100
gnu: inspircd: Support Argon2 hashes.
* gnu/packages/irc.scm (inspircd)[arguments]: Enable the argon2 extra.
[inputs]: Add argon2.
---
gnu/packages/irc.scm | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/irc.scm b/gnu/packages/irc.scm
index c102e73..6114461 100644
--- a/gnu/packages/irc.scm
+++ b/gnu/packages/irc.scm
@@ -62,6 +62,7 @@
#:use-module (gnu packages openldap)
#:use-module (gnu packages kde)
#:use-module (gnu packages kde-frameworks)
+ #:use-module (gnu packages password-utils)
#:use-module (gnu packages pcre)
#:use-module (gnu packages perl)
#:use-module (gnu packages pkg-config)
@@ -513,7 +514,8 @@ interface for those who are accustomed to the ircII way of
doing things.")
(arguments
`(#:configure-flags (map (lambda (module)
(string-append "--enable-extras=" module))
- '("m_geo_maxmind.cpp"
+ '("m_argon2.cpp"
+ "m_geo_maxmind.cpp"
"m_ldap.cpp"
"m_mysql.cpp"
"m_pgsql.cpp"
@@ -551,7 +553,8 @@ interface for those who are accustomed to the ircII way of
doing things.")
(native-inputs
`(("pkg-config" ,pkg-config)))
(inputs
- `(("gnutls" ,gnutls)
+ `(("argon2" ,argon2)
+ ("gnutls" ,gnutls)
("libmaxminddb" ,libmaxminddb)
("mbedtls-apache" ,mbedtls-apache)
("mysql" ,mysql)
- branch master updated (24bb392 -> 234558f), guix-commits, 2020/11/21
- 02/11: gnu: Rename escpr to epson-inkjet-printer-escpr., guix-commits, 2020/11/21
- 01/11: gnu: escpr: Omit static library., guix-commits, 2020/11/21
- 07/11: gnu: inspircd: Support Argon2 hashes.,
guix-commits <=
- 04/11: gnu: inspircd: Update to 3.8.1., guix-commits, 2020/11/21
- 08/11: gnu: hstr: Update to 2.3., guix-commits, 2020/11/21
- 09/11: gnu: libseccomp: Update to 2.5.1., guix-commits, 2020/11/21
- 05/11: gnu: inspircd: Remove unused input., guix-commits, 2020/11/21
- 11/11: gnu: bpftrace: Update to 0.11.4., guix-commits, 2020/11/21
- 06/11: gnu: inspircd: Make most inputs non-native., guix-commits, 2020/11/21
- 03/11: services: cups: Add Splix by default., guix-commits, 2020/11/21
- 10/11: gnu: hidapi: Update to 0.10.0., guix-commits, 2020/11/21