nixpkgs/pkgs/development/libraries/qca2/default.nix
Andrey Golovizin c9545d8c90 qca2 and qca-qt5: use system CA certificates
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.
2018-01-08 10:31:34 +01:00

31 lines
936 B
Nix

{ stdenv, fetchurl, cmake, pkgconfig, qt }:
stdenv.mkDerivation rec {
name = "qca-${version}";
version = "2.1.3";
src = fetchurl {
url = "http://download.kde.org/stable/qca/${version}/src/qca-${version}.tar.xz";
sha256 = "0lz3n652z208daxypdcxiybl0a9fnn6ida0q7fh5f42269mdhgq0";
};
nativeBuildInputs = [ cmake pkgconfig ];
buildInputs = [ qt ];
enableParallelBuilding = true;
# 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 Cryptographic Architecture";
license = "LGPL";
homepage = http://delta.affinix.com/qca;
maintainers = [ maintainers.sander ];
platforms = platforms.linux;
};
}