mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-13 10:57:33 +00:00
opensmtpd: fix build with libxcrypt
This commit is contained in:
parent
52f2785e67
commit
c1da1990ee
@ -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";
|
||||
|
Loading…
Reference in New Issue
Block a user