9bb3fccb5b
continuation of #109595 pkgconfig was aliased in 2018, however, it remained in all-packages.nix due to its wide usage. This cleans up the remaining references to pkgs.pkgsconfig and moves the entry to aliases.nix. python3Packages.pkgconfig remained unchanged because it's the canonical name of the upstream package on pypi.
36 lines
1.1 KiB
Nix
36 lines
1.1 KiB
Nix
{ stdenv, fetchurl, openssl, cmake, pkg-config, qt, darwin }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "qca";
|
|
version = "2.2.1";
|
|
|
|
src = fetchurl {
|
|
url = "http://download.kde.org/stable/qca/${version}/qca-${version}.tar.xz";
|
|
sha256 = "00kv1vsrc8fp556hm8s6yw3240vx3l4067q6vfxrb3gdwgcd45np";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake pkg-config ];
|
|
buildInputs = [ openssl qt ]
|
|
++ stdenv.lib.optional stdenv.isDarwin darwin.apple_sdk.frameworks.Security;
|
|
|
|
# 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" ];
|
|
|
|
postPatch = ''
|
|
sed -i -e '1i cmake_policy(SET CMP0025 NEW)' CMakeLists.txt
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Qt Cryptographic Architecture";
|
|
license = "LGPL";
|
|
homepage = "http://delta.affinix.com/qca";
|
|
maintainers = [ maintainers.sander ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|