tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
dnsperf: fix build by adding openssl
Jörg Thalheim
8 years ago
e5a8dc8f
acc22733
+2
-2
1 changed file
expand all
collapse all
unified
split
pkgs
tools
networking
dnsperf
default.nix
+2
-2
pkgs/tools/networking/dnsperf/default.nix
···
1
1
-
{ stdenv, fetchurl, bind, libseccomp, zlib }:
1
1
+
{ stdenv, fetchurl, bind, libseccomp, zlib, openssl }:
2
2
3
3
stdenv.mkDerivation rec {
4
4
name = "dnsperf-${version}";
···
12
12
13
13
outputs = [ "out" "man" "doc" ];
14
14
15
15
-
buildInputs = [ bind libseccomp zlib ];
15
15
+
buildInputs = [ bind libseccomp zlib openssl ];
16
16
17
17
postInstall = ''
18
18
mkdir -p "$out/share/doc/"