c9545d8c90
CMakeLists.txt looks for the system CA bundle in several locations, including /etc/ssl/certs/ca-certificates.crt. This works for non-sandboxed builds but fails inside a sandbox.
27 lines
923 B
Nix
27 lines
923 B
Nix
{ stdenv, fetchurl, cmake, openssl, pkgconfig, qtbase }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "qca-qt5-2.1.1";
|
|
|
|
src = fetchurl {
|
|
url = "http://download.kde.org/stable/qca/2.1.1/src/qca-2.1.1.tar.xz";
|
|
sha256 = "10z9icq28fww4qbzwra8d9z55ywbv74qk68nhiqfrydm21wkxplm";
|
|
};
|
|
|
|
buildInputs = [ openssl qtbase ];
|
|
nativeBuildInputs = [ cmake pkgconfig ];
|
|
|
|
# tells CMake to use this CA bundle file if it is accessible
|
|
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)
|
|
cmakeFlags = [ "-Dqca_CERTSTORE=/etc/ssl/certs/ca-certificates.crt" ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Qt 5 Cryptographic Architecture";
|
|
homepage = http://delta.affinix.com/qca;
|
|
maintainers = with maintainers; [ ttuegel ];
|
|
license = licenses.lgpl21Plus;
|
|
platforms = with platforms; linux;
|
|
};
|
|
}
|