mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-13 21:32:23 +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 {
|
stdenv.mkDerivation rec {
|
||||||
name = "dnsperf-${version}";
|
name = "dnsperf-${version}";
|
||||||
@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
outputs = [ "out" "man" "doc" ];
|
outputs = [ "out" "man" "doc" ];
|
||||||
|
|
||||||
buildInputs = [ bind libseccomp zlib ];
|
buildInputs = [ bind libseccomp zlib openssl ];
|
||||||
|
|
||||||
postInstall = ''
|
postInstall = ''
|
||||||
mkdir -p "$out/share/doc/"
|
mkdir -p "$out/share/doc/"
|
||||||
|
Loading…
Reference in New Issue
Block a user