2015-03-30 23:50:47 +00:00
|
|
|
{ stdenv, fetchurl, cmake, pkgconfig, qt }:
|
2010-12-26 15:26:01 +00:00
|
|
|
|
2011-07-11 10:49:21 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2015-11-22 13:45:09 +00:00
|
|
|
name = "qca-2.1.1";
|
2015-03-30 23:50:47 +00:00
|
|
|
|
2010-12-26 15:26:01 +00:00
|
|
|
src = fetchurl {
|
2015-11-22 13:45:09 +00:00
|
|
|
url = "http://download.kde.org/stable/qca/2.1.1/src/qca-2.1.1.tar.xz";
|
|
|
|
sha256 = "10z9icq28fww4qbzwra8d9z55ywbv74qk68nhiqfrydm21wkxplm";
|
2010-12-26 15:26:01 +00:00
|
|
|
};
|
2011-03-02 18:50:00 +00:00
|
|
|
|
2015-03-30 23:50:47 +00:00
|
|
|
nativeBuildInputs = [ cmake pkgconfig ];
|
|
|
|
buildInputs = [ qt ];
|
2011-07-11 10:49:21 +00:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
2015-03-30 23:50:47 +00:00
|
|
|
|
2015-12-02 09:42:02 +00:00
|
|
|
patches = [ ./libressl.patch ];
|
|
|
|
|
2010-12-26 15:26:01 +00:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Qt Cryptographic Architecture";
|
|
|
|
license = "LGPL";
|
|
|
|
homepage = http://delta.affinix.com/qca;
|
|
|
|
maintainers = [ maintainers.sander maintainers.urkud ];
|
2016-08-02 17:50:55 +00:00
|
|
|
platforms = platforms.linux;
|
2010-12-26 15:26:01 +00:00
|
|
|
};
|
|
|
|
}
|