4648545542
Without the change build n `gcc-11` fails as: $ nix build --impure --expr 'with import ./. {}; qca-qt5.override { stdenv = gcc11Stdenv; }' -L ... ...gcc-11.2.0/include/c++/11.2.0/bits/stl_raw_storage_iter.h:69:22: error: expected template-name before '<' token 69 | : public iterator<output_iterator_tag, void, void, void, void> | ^
38 lines
1.2 KiB
Nix
38 lines
1.2 KiB
Nix
{ lib, stdenv, fetchurl, cmake, openssl, pkg-config, qtbase }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "qca-qt5";
|
|
version = "2.3.1";
|
|
|
|
src = fetchurl {
|
|
url = "http://download.kde.org/stable/qca/${version}/qca-${version}.tar.xz";
|
|
sha256 = "sha256-wThREJq+/EYjNwmJ+uOnRb9rGss8KhOolYU5gj6XTks=";
|
|
};
|
|
|
|
patches = [
|
|
# Pull upstream fix for gcc-11
|
|
(fetchurl {
|
|
url = "https://github.com/KDE/qca/commit/32275f1a74c161d2fed8c056b2dd9555687a22f2.patch";
|
|
sha256 = "sha256-SUH2eyzP2vH/ZjYcX8ybwiqhoTm/QjuEpTKjb2iH1No=";
|
|
})
|
|
];
|
|
|
|
buildInputs = [ openssl qtbase ];
|
|
nativeBuildInputs = [ cmake pkg-config ];
|
|
|
|
dontWrapQtApps = true;
|
|
|
|
# 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" ];
|
|
|
|
meta = with lib; {
|
|
description = "Qt 5 Cryptographic Architecture";
|
|
homepage = "http://delta.affinix.com/qca";
|
|
maintainers = with maintainers; [ ttuegel ];
|
|
license = licenses.lgpl21Plus;
|
|
platforms = with platforms; unix;
|
|
};
|
|
}
|