about summary refs log tree commit diff
path: root/pkgs/development/libraries/qca-qt5
diff options
context:
space:
mode:
authorNick Cao <nickcao@nichi.co>2022-11-04 09:11:04 +0800
committerNick Cao <nickcao@nichi.co>2022-11-04 09:11:04 +0800
commite13967c88c609ef64d54687bb58f04bef3b67564 (patch)
treeb43214cf7a40dbab354569b58af2f6979d46c834 /pkgs/development/libraries/qca-qt5
parent84fc8bf89e5404ff981084870683bf91de490bbe (diff)
Revert "libsForQt5.qca-qt5_2_3_2: init at 2.3.2"
This reverts commit 252458b9c556a31c5c52f3e9ead169ef49e38d29.
Diffstat (limited to 'pkgs/development/libraries/qca-qt5')
-rw-r--r--pkgs/development/libraries/qca-qt5/2.3.2.nix30
1 files changed, 0 insertions, 30 deletions
diff --git a/pkgs/development/libraries/qca-qt5/2.3.2.nix b/pkgs/development/libraries/qca-qt5/2.3.2.nix
deleted file mode 100644
index 098fbacc7ff53..0000000000000
--- a/pkgs/development/libraries/qca-qt5/2.3.2.nix
+++ /dev/null
@@ -1,30 +0,0 @@
-{ lib, stdenv, fetchurl, cmake, openssl, pkg-config, qtbase }:
-
-stdenv.mkDerivation rec {
-  pname = "qca-qt5";
-  version = "2.3.2";
-
-  src = fetchurl {
-    url = "http://download.kde.org/stable/qca/${version}/qca-${version}.tar.xz";
-    sha256 = "sha256-RpdgAjfEvDqXnofSzIBiTyewYoDmNfXZDsfdTSqfYG0=";
-  };
-
-  buildInputs = [ openssl qtbase ];
-  nativeBuildInputs = [ cmake pkg-config ];
-
-  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; {
-    description = "Qt 5 Cryptographic Architecture";
-    homepage = "http://delta.affinix.com/qca";
-    maintainers = with maintainers; [ ttuegel ];
-    license = licenses.lgpl21Plus;
-    platforms = with platforms; unix;
-  };
-}