summary refs log tree commit diff
path: root/pkgs/development/libraries/qca2
diff options
context:
space:
mode:
authorRobin Gloster <mail@glob.in>2017-02-14 19:14:28 +0100
committerRobin Gloster <mail@glob.in>2019-07-29 21:25:10 +0200
commitc1d336dfcee6a8b22d78d1b5be57b0da65898ff2 (patch)
tree5cda858bd4b10bfc98d0ac687ab50f3c79060d1a /pkgs/development/libraries/qca2
parent690aaf4429fa6ebff06cb4af29ac1e7e4ea17ef5 (diff)
downloadnixpkgs-c1d336dfcee6a8b22d78d1b5be57b0da65898ff2.tar
nixpkgs-c1d336dfcee6a8b22d78d1b5be57b0da65898ff2.tar.gz
nixpkgs-c1d336dfcee6a8b22d78d1b5be57b0da65898ff2.tar.bz2
nixpkgs-c1d336dfcee6a8b22d78d1b5be57b0da65898ff2.tar.lz
nixpkgs-c1d336dfcee6a8b22d78d1b5be57b0da65898ff2.tar.xz
nixpkgs-c1d336dfcee6a8b22d78d1b5be57b0da65898ff2.tar.zst
nixpkgs-c1d336dfcee6a8b22d78d1b5be57b0da65898ff2.zip
qca2: explicitly require openssl_1_0_2
Diffstat (limited to 'pkgs/development/libraries/qca2')
-rw-r--r--pkgs/development/libraries/qca2/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/qca2/default.nix b/pkgs/development/libraries/qca2/default.nix
index ec32c44a91f..885b7b378cc 100644
--- a/pkgs/development/libraries/qca2/default.nix
+++ b/pkgs/development/libraries/qca2/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, cmake, pkgconfig, qt, darwin }:
+{ stdenv, fetchurl, openssl_1_0_2, cmake, pkgconfig, qt, darwin }:
 
 stdenv.mkDerivation rec {
   name = "qca-${version}";
@@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
   };
 
   nativeBuildInputs = [ cmake pkgconfig ];
-  buildInputs = [ qt ]
+  buildInputs = [ openssl_1_0_2 qt ]
     ++ stdenv.lib.optional stdenv.isDarwin darwin.apple_sdk.frameworks.Security;
 
   enableParallelBuilding = true;