2015-11-22 13:44:34 +00:00
|
|
|
{ stdenv, fetchurl, cmake, openssl, pkgconfig, qtbase }:
|
2015-05-15 01:06:36 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2015-11-22 13:44:34 +00:00
|
|
|
name = "qca-qt5-2.1.1";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://download.kde.org/stable/qca/2.1.1/src/qca-2.1.1.tar.xz";
|
|
|
|
sha256 = "10z9icq28fww4qbzwra8d9z55ywbv74qk68nhiqfrydm21wkxplm";
|
2015-05-15 01:06:36 +01:00
|
|
|
};
|
|
|
|
|
2015-09-27 16:00:13 +01:00
|
|
|
buildInputs = [ openssl qtbase ];
|
2015-05-15 01:06:36 +01:00
|
|
|
nativeBuildInputs = [ cmake pkgconfig ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Qt 5 Cryptographic Architecture";
|
|
|
|
homepage = http://delta.affinix.com/qca;
|
|
|
|
maintainers = with maintainers; [ ttuegel ];
|
2015-05-28 18:20:29 +01:00
|
|
|
license = licenses.lgpl21Plus;
|
2016-08-02 18:50:55 +01:00
|
|
|
platforms = with platforms; linux;
|
2015-05-15 01:06:36 +01:00
|
|
|
};
|
|
|
|
}
|