lol

Merge pull request #197310 from NickCao/qca-drop

libsForQt5.qca-qt5_2_3_2: drop

authored by

ajs124 and committed by
GitHub
83013c8b 423a5c72

-35
-30
pkgs/development/libraries/qca-qt5/2.3.2.nix
··· 1 - { lib, stdenv, fetchurl, cmake, openssl, pkg-config, qtbase }: 2 - 3 - stdenv.mkDerivation rec { 4 - pname = "qca-qt5"; 5 - version = "2.3.2"; 6 - 7 - src = fetchurl { 8 - url = "http://download.kde.org/stable/qca/${version}/qca-${version}.tar.xz"; 9 - sha256 = "sha256-RpdgAjfEvDqXnofSzIBiTyewYoDmNfXZDsfdTSqfYG0="; 10 - }; 11 - 12 - buildInputs = [ openssl qtbase ]; 13 - nativeBuildInputs = [ cmake pkg-config ]; 14 - 15 - dontWrapQtApps = true; 16 - 17 - # tells CMake to use this CA bundle file if it is accessible 18 - preConfigure = "export QC_CERTSTORE_PATH=/etc/ssl/certs/ca-certificates.crt"; 19 - 20 - # tricks CMake into using this CA bundle file if it is not accessible (in a sandbox) 21 - cmakeFlags = [ "-Dqca_CERTSTORE=/etc/ssl/certs/ca-certificates.crt" ]; 22 - 23 - meta = with lib; { 24 - description = "Qt 5 Cryptographic Architecture"; 25 - homepage = "http://delta.affinix.com/qca"; 26 - maintainers = with maintainers; [ ttuegel ]; 27 - license = licenses.lgpl21Plus; 28 - platforms = with platforms; unix; 29 - }; 30 - }
-5
pkgs/top-level/qt5-packages.nix
··· 174 174 175 175 qca-qt5 = callPackage ../development/libraries/qca-qt5 { }; 176 176 177 - # Until macOS SDK allows for Qt 5.15, darwin is limited to 2.3.2 178 - qca-qt5_2_3_2 = callPackage ../development/libraries/qca-qt5/2.3.2.nix { 179 - openssl = pkgs.openssl_1_1; 180 - }; 181 - 182 177 qcoro = callPackage ../development/libraries/qcoro { }; 183 178 184 179 qcsxcad = callPackage ../development/libraries/science/electronics/qcsxcad { };