2021-01-21 17:00:13 +00:00
|
|
|
{ lib, stdenv, fetchurl, cmake, openssl, pkg-config, qtbase }:
|
2015-05-15 01:06:36 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-04-22 20:42:14 +01:00
|
|
|
pname = "qca-qt5";
|
2020-08-23 07:57:15 +01:00
|
|
|
version = "2.3.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";
|
2020-08-23 07:57:15 +01:00
|
|
|
sha256 = "sha256-wThREJq+/EYjNwmJ+uOnRb9rGss8KhOolYU5gj6XTks=";
|
2015-05-15 01:06:36 +01:00
|
|
|
};
|
|
|
|
|
2015-09-27 16:00:13 +01:00
|
|
|
buildInputs = [ openssl qtbase ];
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ cmake pkg-config ];
|
2015-05-15 01:06:36 +01:00
|
|
|
|
2021-01-12 11:50:23 +00:00
|
|
|
dontWrapQtApps = true;
|
|
|
|
|
2018-01-05 09:59:00 +00:00
|
|
|
# tells CMake to use this CA bundle file if it is accessible
|
2021-01-24 09:19:10 +00: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" ];
|
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with lib; {
|
2015-05-15 01:06:36 +01:00
|
|
|
description = "Qt 5 Cryptographic Architecture";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://delta.affinix.com/qca";
|
2015-05-15 01:06:36 +01:00
|
|
|
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
|
|
|
};
|
|
|
|
}
|