2015-11-22 13:44:34 +00:00
|
|
|
{ stdenv, fetchurl, cmake, openssl, pkgconfig, qtbase }:
|
2015-05-15 01:06:36 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-04-22 20:42:14 +01:00
|
|
|
pname = "qca-qt5";
|
2019-04-27 22:46:47 +01:00
|
|
|
version = "2.2.1";
|
2015-11-22 13:44:34 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-04-22 20:45:03 +01:00
|
|
|
url = "http://download.kde.org/stable/qca/${version}/qca-${version}.tar.xz";
|
2019-04-27 22:46:47 +01:00
|
|
|
sha256 = "00kv1vsrc8fp556hm8s6yw3240vx3l4067q6vfxrb3gdwgcd45np";
|
2015-05-15 01:06:36 +01:00
|
|
|
};
|
|
|
|
|
2015-09-27 16:00:13 +01:00
|
|
|
buildInputs = [ openssl qtbase ];
|
2015-05-15 01:06:36 +01:00
|
|
|
nativeBuildInputs = [ cmake pkgconfig ];
|
|
|
|
|
2019-04-27 22:52:54 +01:00
|
|
|
# Without this patch cmake fails with a "No known features for CXX compiler"
|
|
|
|
# error on darwin
|
|
|
|
patches = stdenv.lib.optional stdenv.isDarwin ./move-project.patch ;
|
|
|
|
|
2018-01-05 09:59:00 +00:00
|
|
|
# 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" ];
|
|
|
|
|
2015-05-15 01:06:36 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Qt 5 Cryptographic Architecture";
|
|
|
|
homepage = http://delta.affinix.com/qca;
|
|
|
|
maintainers = with maintainers; [ ttuegel ];
|
2015-05-28 18:20:29 +01:00
|
|
|
license = licenses.lgpl21Plus;
|
2018-03-13 20:13:31 +00:00
|
|
|
platforms = with platforms; unix;
|
2015-05-15 01:06:36 +01:00
|
|
|
};
|
|
|
|
}
|