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

33 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 {
pname = "qca-qt5";
2019-04-27 23:46:47 +02:00
version = "2.2.1";
2015-11-22 14:44:34 +01:00
src = fetchurl {
url = "http://download.kde.org/stable/qca/${version}/qca-${version}.tar.xz";
2019-04-27 23:46:47 +02:00
sha256 = "00kv1vsrc8fp556hm8s6yw3240vx3l4067q6vfxrb3gdwgcd45np";
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 ];
# Without this patch cmake fails with a "No known features for CXX compiler"
# error on darwin
patches = stdenv.lib.optional stdenv.isDarwin ./move-project.patch ;
# 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
};
}