nixpkgs/pkgs/development/libraries/qca-qt5/default.nix
Ryan Mulligan abec360b76 qca-qt5: 2.1.1 -> 2.1.3
Semi-automatic update. These checks were performed:

- built on NixOS
- ran `/nix/store/m57l1rvkq2yb9yk1hsjs5bnj0g0ylhsx-qca-qt5-2.1.3/bin/mozcerts-qt5 -h` got 0 exit code
- ran `/nix/store/m57l1rvkq2yb9yk1hsjs5bnj0g0ylhsx-qca-qt5-2.1.3/bin/mozcerts-qt5 --help` got 0 exit code
- ran `/nix/store/m57l1rvkq2yb9yk1hsjs5bnj0g0ylhsx-qca-qt5-2.1.3/bin/mozcerts-qt5 help` got 0 exit code
- ran `/nix/store/m57l1rvkq2yb9yk1hsjs5bnj0g0ylhsx-qca-qt5-2.1.3/bin/qcatool-qt5 -h` got 0 exit code
- ran `/nix/store/m57l1rvkq2yb9yk1hsjs5bnj0g0ylhsx-qca-qt5-2.1.3/bin/qcatool-qt5 --help` got 0 exit code
- ran `/nix/store/m57l1rvkq2yb9yk1hsjs5bnj0g0ylhsx-qca-qt5-2.1.3/bin/qcatool-qt5 help` got 0 exit code
- ran `/nix/store/m57l1rvkq2yb9yk1hsjs5bnj0g0ylhsx-qca-qt5-2.1.3/bin/qcatool-qt5 -v` and found version 2.1.3
- ran `/nix/store/m57l1rvkq2yb9yk1hsjs5bnj0g0ylhsx-qca-qt5-2.1.3/bin/qcatool-qt5 --version` and found version 2.1.3
- ran `/nix/store/m57l1rvkq2yb9yk1hsjs5bnj0g0ylhsx-qca-qt5-2.1.3/bin/qcatool-qt5 version` and found version 2.1.3
- found 2.1.3 with grep in /nix/store/m57l1rvkq2yb9yk1hsjs5bnj0g0ylhsx-qca-qt5-2.1.3
- found 2.1.3 in filename of file in /nix/store/m57l1rvkq2yb9yk1hsjs5bnj0g0ylhsx-qca-qt5-2.1.3

cc "@ttuegel"
2018-02-28 15:01:59 +00:00

28 lines
923 B
Nix

{ stdenv, fetchurl, cmake, openssl, pkgconfig, qtbase }:
stdenv.mkDerivation rec {
name = "qca-qt5-2.1.3";
src = fetchurl {
url = "http://download.kde.org/stable/qca/2.1.3/src/qca-2.1.3.tar.xz";
sha256 = "0lz3n652z208daxypdcxiybl0a9fnn6ida0q7fh5f42269mdhgq0";
};
buildInputs = [ openssl qtbase ];
nativeBuildInputs = [ cmake pkgconfig ];
# 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 stdenv.lib; {
description = "Qt 5 Cryptographic Architecture";
homepage = http://delta.affinix.com/qca;
maintainers = with maintainers; [ ttuegel ];
license = licenses.lgpl21Plus;
platforms = with platforms; linux;
};
}