mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 00:38:16 +03:00
dnsperf: fix build by adding openssl
This commit is contained in:
parent
acc2273319
commit
e5a8dc8f57
@ -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/"
|
||||
|
Loading…
Reference in New Issue
Block a user