opensmtpd: fix build with libxcrypt

This commit is contained in:
Franz Pletz 2022-09-27 04:31:30 +02:00 committed by Martin Weinelt
parent 52f2785e67
commit c1da1990ee
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759

View File

@ -1,5 +1,5 @@
{ lib, stdenv, fetchurl, autoconf, automake, libtool, bison
, libasr, libevent, zlib, libressl, db, pam, nixosTests
, libasr, libevent, zlib, libressl, db, pam, libxcrypt, nixosTests
}:
stdenv.mkDerivation rec {
@ -7,7 +7,7 @@ stdenv.mkDerivation rec {
version = "6.8.0p2";
nativeBuildInputs = [ autoconf automake libtool bison ];
buildInputs = [ libasr libevent zlib libressl db pam ];
buildInputs = [ libasr libevent zlib libressl db pam libxcrypt ];
src = fetchurl {
url = "https://www.opensmtpd.org/archives/${pname}-${version}.tar.gz";