2021-01-21 09:00:13 -08:00
|
|
|
{ lib, stdenv, fetchurl, cmake, openssl, pkg-config, qtbase }:
|
2015-05-14 17:06:36 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-04-22 12:42:14 -07:00
|
|
|
pname = "qca-qt5";
|
2020-08-22 23:57:15 -07:00
|
|
|
version = "2.3.1";
|
2015-11-22 05:44:34 -08:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-04-22 12:45:03 -07:00
|
|
|
url = "http://download.kde.org/stable/qca/${version}/qca-${version}.tar.xz";
|
2020-08-22 23:57:15 -07:00
|
|
|
sha256 = "sha256-wThREJq+/EYjNwmJ+uOnRb9rGss8KhOolYU5gj6XTks=";
|
2015-05-14 17:06:36 -07:00
|
|
|
};
|
|
|
|
|
2015-09-27 08:00:13 -07:00
|
|
|
buildInputs = [ openssl qtbase ];
|
2021-01-18 22:50:56 -08:00
|
|
|
nativeBuildInputs = [ cmake pkg-config ];
|
2015-05-14 17:06:36 -07:00
|
|
|
|
2021-01-12 03:50:23 -08:00
|
|
|
dontWrapQtApps = true;
|
|
|
|
|
2019-04-27 14:52:54 -07:00
|
|
|
# Without this patch cmake fails with a "No known features for CXX compiler"
|
|
|
|
# error on darwin
|
2021-01-21 09:00:13 -08:00
|
|
|
patches = lib.optional stdenv.isDarwin ./move-project.patch ;
|
2019-04-27 14:52:54 -07:00
|
|
|
|
2018-01-05 01:59:00 -08:00
|
|
|
# tells CMake to use this CA bundle file if it is accessible
|
2021-01-24 01:19:10 -08:00
|
|
|
preConfigure = "export QC_CERTSTORE_PATH=/etc/ssl/certs/ca-certificates.crt";
|
2018-01-05 01:59:00 -08: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" ];
|
|
|
|
|
2021-01-21 09:00:13 -08:00
|
|
|
meta = with lib; {
|
2015-05-14 17:06:36 -07:00
|
|
|
description = "Qt 5 Cryptographic Architecture";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "http://delta.affinix.com/qca";
|
2015-05-14 17:06:36 -07:00
|
|
|
maintainers = with maintainers; [ ttuegel ];
|
2015-05-28 10:20:29 -07:00
|
|
|
license = licenses.lgpl21Plus;
|
2018-03-13 13:13:31 -07:00
|
|
|
platforms = with platforms; unix;
|
2015-05-14 17:06:36 -07:00
|
|
|
};
|
|
|
|
}
|