···11 buildInputs = [ openssl qtbase ];
12 nativeBuildInputs = [ cmake pkgconfig ];
1314+ # tells CMake to use this CA bundle file if it is accessible
15+ preConfigure = ''export QC_CERTSTORE_PATH=/etc/ssl/certs/ca-certificates.crt'';
16+17+ # tricks CMake into using this CA bundle file if it is not accessible (in a sandbox)
18+ cmakeFlags = [ "-Dqca_CERTSTORE=/etc/ssl/certs/ca-certificates.crt" ];
19+20 meta = with stdenv.lib; {
21 description = "Qt 5 Cryptographic Architecture";
22 homepage = http://delta.affinix.com/qca;
+6
pkgs/development/libraries/qca2/default.nix
···1415 enableParallelBuilding = true;
1600000017 meta = with stdenv.lib; {
18 description = "Qt Cryptographic Architecture";
19 license = "LGPL";
···1415 enableParallelBuilding = true;
1617+ # tells CMake to use this CA bundle file if it is accessible
18+ preConfigure = ''export QC_CERTSTORE_PATH=/etc/ssl/certs/ca-certificates.crt'';
19+20+ # tricks CMake into using this CA bundle file if it is not accessible (in a sandbox)
21+ cmakeFlags = [ "-Dqca_CERTSTORE=/etc/ssl/certs/ca-certificates.crt" ];
22+23 meta = with stdenv.lib; {
24 description = "Qt Cryptographic Architecture";
25 license = "LGPL";