Skip to content

Commit

Permalink
opensmtpd: build against openssl
Browse files Browse the repository at this point in the history
build fails against our local libressl version
  • Loading branch information
Mic92 committed Mar 17, 2020
1 parent fe67f42 commit 29431a0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkgs/servers/mail/opensmtpd/default.nix
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{ stdenv, fetchurl, autoconf, automake, libtool, bison
, libasr, libevent, zlib, libressl, db, pam, nixosTests
, libasr, libevent, zlib, openssl, db, pam, nixosTests
}:

stdenv.mkDerivation rec {
pname = "opensmtpd";
version = "6.6.4p1";

nativeBuildInputs = [ autoconf automake libtool bison ];
buildInputs = [ libasr libevent zlib libressl db pam ];
buildInputs = [ libasr libevent zlib openssl db pam ];

src = fetchurl {
url = "https://www.opensmtpd.org/archives/${pname}-${version}.tar.gz";
Expand Down

0 comments on commit 29431a0

Please sign in to comment.