about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/qca-qt5
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/libraries/qca-qt5')
-rw-r--r--nixpkgs/pkgs/development/libraries/qca-qt5/default.nix32
-rw-r--r--nixpkgs/pkgs/development/libraries/qca-qt5/move-project.patch17
2 files changed, 49 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/libraries/qca-qt5/default.nix b/nixpkgs/pkgs/development/libraries/qca-qt5/default.nix
new file mode 100644
index 000000000000..d1b545884b53
--- /dev/null
+++ b/nixpkgs/pkgs/development/libraries/qca-qt5/default.nix
@@ -0,0 +1,32 @@
+{ lib, stdenv, fetchurl, cmake, openssl, pkg-config, qtbase }:
+
+stdenv.mkDerivation rec {
+  pname = "qca-qt5";
+  version = "2.3.1";
+
+  src = fetchurl {
+    url = "http://download.kde.org/stable/qca/${version}/qca-${version}.tar.xz";
+    sha256 = "sha256-wThREJq+/EYjNwmJ+uOnRb9rGss8KhOolYU5gj6XTks=";
+  };
+
+  buildInputs = [ openssl qtbase ];
+  nativeBuildInputs = [ cmake pkg-config ];
+
+  # Without this patch cmake fails with a "No known features for CXX compiler"
+  # error on darwin
+  patches = 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" ];
+
+  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;
+  };
+}
diff --git a/nixpkgs/pkgs/development/libraries/qca-qt5/move-project.patch b/nixpkgs/pkgs/development/libraries/qca-qt5/move-project.patch
new file mode 100644
index 000000000000..dcecb83d7db9
--- /dev/null
+++ b/nixpkgs/pkgs/development/libraries/qca-qt5/move-project.patch
@@ -0,0 +1,17 @@
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index 2f2b5d0..971dee3 100644
+--- a/CMakeLists.txt
++++ b/CMakeLists.txt
+@@ -6,10 +6,11 @@ if(NOT CMAKE_INSTALL_PREFIX)
+   unset(CMAKE_INSTALL_PREFIX CACHE)
+ endif(NOT CMAKE_INSTALL_PREFIX)
+ 
+-project(qca)
+ 
+ cmake_minimum_required(VERSION 3.4)
+ 
++project(qca)
++
+ set(QCA_LIB_MAJOR_VERSION "2")
+ set(QCA_LIB_MINOR_VERSION "2")
+ set(QCA_LIB_PATCH_VERSION "1")