qca: fix on darwin
This commit is contained in:
parent
2d63877fa4
commit
aba9f67d7d
@ -10,16 +10,23 @@ stdenv.mkDerivation rec {
|
|||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ cmake pkgconfig ];
|
nativeBuildInputs = [ cmake pkgconfig ];
|
||||||
buildInputs = [ (stdenv.lib.optional stdenv.isDarwin darwin.apple_sdk.frameworks.Security) qt ];
|
buildInputs = [ qt ]
|
||||||
|
++ stdenv.lib.optional stdenv.isDarwin darwin.apple_sdk.frameworks.Security;
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
# tells CMake to use this CA bundle file if it is accessible
|
# tells CMake to use this CA bundle file if it is accessible
|
||||||
preConfigure = ''export QC_CERTSTORE_PATH=/etc/ssl/certs/ca-certificates.crt'';
|
preConfigure = ''
|
||||||
|
export QC_CERTSTORE_PATH=/etc/ssl/certs/ca-certificates.crt
|
||||||
|
'';
|
||||||
|
|
||||||
# tricks CMake into using this CA bundle file if it is not accessible (in a sandbox)
|
# tricks CMake into using this CA bundle file if it is not accessible (in a sandbox)
|
||||||
cmakeFlags = [ "-Dqca_CERTSTORE=/etc/ssl/certs/ca-certificates.crt" ];
|
cmakeFlags = [ "-Dqca_CERTSTORE=/etc/ssl/certs/ca-certificates.crt" ];
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
sed -i -e '1i cmake_policy(SET CMP0025 NEW)' CMakeLists.txt
|
||||||
|
'';
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Qt Cryptographic Architecture";
|
description = "Qt Cryptographic Architecture";
|
||||||
license = "LGPL";
|
license = "LGPL";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user