Skip to content

Commit

Permalink
dnsperf: fix build by adding openssl
Browse files Browse the repository at this point in the history
  • Loading branch information
Mic92 committed Feb 27, 2018
1 parent acc2273 commit e5a8dc8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkgs/tools/networking/dnsperf/default.nix
@@ -1,4 +1,4 @@
{ stdenv, fetchurl, bind, libseccomp, zlib }:
{ stdenv, fetchurl, bind, libseccomp, zlib, openssl }:

stdenv.mkDerivation rec {
name = "dnsperf-${version}";
Expand All @@ -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/"
Expand Down

0 comments on commit e5a8dc8

Please sign in to comment.