ircdHybrid: fix build with libxcrypt

This commit is contained in:
Franz Pletz 2022-09-29 17:06:42 +02:00 committed by Martin Weinelt
parent c82e7ee61b
commit 5c34a5351a
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759

View File

@ -1,4 +1,4 @@
{ lib, stdenv, fetchurl, openssl, zlib }:
{ lib, stdenv, fetchurl, openssl, zlib, libxcrypt }:
stdenv.mkDerivation rec {
pname = "ircd-hybrid";
@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
sha256 = "sha256-vQNzx4DjCMGm9piQFf8o4cIpme92S3toY2tihXPCUe8=";
};
buildInputs = [ openssl zlib ];
buildInputs = [ openssl zlib libxcrypt ];
configureFlags = [
"--with-nicklen=100"