3
0
Fork 0
forked from mirrors/nixpkgs

dnsperf: fix build by adding openssl

This commit is contained in:
Jörg Thalheim 2018-02-27 17:18:15 +00:00
parent acc2273319
commit e5a8dc8f57

View file

@ -1,4 +1,4 @@
{ stdenv, fetchurl, bind, libseccomp, zlib }:
{ stdenv, fetchurl, bind, libseccomp, zlib, openssl }:
stdenv.mkDerivation rec {
name = "dnsperf-${version}";
@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
outputs = [ "out" "man" "doc" ];
buildInputs = [ bind libseccomp zlib ];
buildInputs = [ bind libseccomp zlib openssl ];
postInstall = ''
mkdir -p "$out/share/doc/"