2021-01-21 18:00:13 +01:00
|
|
|
{ lib, stdenv, fetchurl, openssl, cmake, pkg-config, qt, darwin }:
|
2010-12-26 16:26:01 +01:00
|
|
|
|
2011-07-11 12:49:21 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "qca";
|
2019-10-13 23:53:29 +02:00
|
|
|
version = "2.2.1";
|
2015-03-31 01:50:47 +02:00
|
|
|
|
2010-12-26 16:26:01 +01:00
|
|
|
src = fetchurl {
|
2019-10-13 23:53:29 +02:00
|
|
|
url = "http://download.kde.org/stable/qca/${version}/qca-${version}.tar.xz";
|
|
|
|
sha256 = "00kv1vsrc8fp556hm8s6yw3240vx3l4067q6vfxrb3gdwgcd45np";
|
2010-12-26 16:26:01 +01:00
|
|
|
};
|
2011-03-02 19:50:00 +01:00
|
|
|
|
2021-01-19 07:50:56 +01:00
|
|
|
nativeBuildInputs = [ cmake pkg-config ];
|
2019-10-13 23:53:29 +02:00
|
|
|
buildInputs = [ openssl qt ]
|
2021-01-21 18:00:13 +01:00
|
|
|
++ lib.optional stdenv.isDarwin darwin.apple_sdk.frameworks.Security;
|
2011-07-11 12:49:21 +02:00
|
|
|
|
2018-01-05 10:59:00 +01:00
|
|
|
# tells CMake to use this CA bundle file if it is accessible
|
2018-08-17 05:01:14 +02:00
|
|
|
preConfigure = ''
|
|
|
|
export QC_CERTSTORE_PATH=/etc/ssl/certs/ca-certificates.crt
|
|
|
|
'';
|
2018-01-05 10:59:00 +01:00
|
|
|
|
|
|
|
# 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" ];
|
|
|
|
|
2018-08-17 05:01:14 +02:00
|
|
|
postPatch = ''
|
|
|
|
sed -i -e '1i cmake_policy(SET CMP0025 NEW)' CMakeLists.txt
|
|
|
|
'';
|
|
|
|
|
2021-01-21 18:00:13 +01:00
|
|
|
meta = with lib; {
|
2010-12-26 16:26:01 +01:00
|
|
|
description = "Qt Cryptographic Architecture";
|
|
|
|
license = "LGPL";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "http://delta.affinix.com/qca";
|
2017-03-27 19:11:17 +02:00
|
|
|
maintainers = [ maintainers.sander ];
|
2018-03-13 10:44:31 +01:00
|
|
|
platforms = platforms.unix;
|
2010-12-26 16:26:01 +01:00
|
|
|
};
|
|
|
|
}
|