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