nixpkgs/pkgs/development/libraries/qca-qt5/default.nix

31 lines
969 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, cmake, openssl, pkg-config, qtbase }:
2015-05-15 00:06:36 +00:00
stdenv.mkDerivation rec {
pname = "qca-qt5";
2020-08-23 06:57:15 +00:00
version = "2.3.1";
2015-11-22 13:44:34 +00:00
src = fetchurl {
url = "http://download.kde.org/stable/qca/${version}/qca-${version}.tar.xz";
2020-08-23 06:57:15 +00:00
sha256 = "sha256-wThREJq+/EYjNwmJ+uOnRb9rGss8KhOolYU5gj6XTks=";
2015-05-15 00:06:36 +00:00
};
2015-09-27 15:00:13 +00:00
buildInputs = [ openssl qtbase ];
nativeBuildInputs = [ cmake pkg-config ];
2015-05-15 00:06:36 +00:00
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; {
2015-05-15 00:06:36 +00:00
description = "Qt 5 Cryptographic Architecture";
homepage = "http://delta.affinix.com/qca";
2015-05-15 00:06:36 +00:00
maintainers = with maintainers; [ ttuegel ];
license = licenses.lgpl21Plus;
2018-03-13 20:13:31 +00:00
platforms = with platforms; unix;
2015-05-15 00:06:36 +00:00
};
}