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

32 lines
1.1 KiB
Nix
Raw Normal View History

2015-11-22 14:44:34 +01:00
{ stdenv, fetchurl, cmake, openssl, pkgconfig, qtbase }:
2015-05-15 02:06:36 +02:00
stdenv.mkDerivation rec {
name = "qca-qt5-2.1.3";
2015-11-22 14:44:34 +01:00
src = fetchurl {
url = "http://download.kde.org/stable/qca/2.1.3/src/qca-2.1.3.tar.xz";
sha256 = "0lz3n652z208daxypdcxiybl0a9fnn6ida0q7fh5f42269mdhgq0";
2015-05-15 02:06:36 +02:00
};
2015-09-27 17:00:13 +02:00
buildInputs = [ openssl qtbase ];
2015-05-15 02:06:36 +02:00
nativeBuildInputs = [ cmake pkgconfig ];
2018-03-13 21:13:31 +01:00
# Without this patch cmake fails with a "No known features for CXX compiler"
2018-03-14 19:22:10 +01:00
# error on darwin
patches = stdenv.lib.optional stdenv.isDarwin ./move-project.patch ;
2018-03-13 21:13:31 +01: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 02:06:36 +02:00
meta = with stdenv.lib; {
description = "Qt 5 Cryptographic Architecture";
homepage = http://delta.affinix.com/qca;
maintainers = with maintainers; [ ttuegel ];
license = licenses.lgpl21Plus;
2018-03-13 21:13:31 +01:00
platforms = with platforms; unix;
2015-05-15 02:06:36 +02:00
};
}