2015-03-30 16:50:47 -07:00
|
|
|
{ stdenv, fetchurl, cmake, pkgconfig, qt }:
|
2010-12-26 07:26:01 -08:00
|
|
|
|
2011-07-11 03:49:21 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2015-11-22 05:45:09 -08:00
|
|
|
name = "qca-2.1.1";
|
2015-03-30 16:50:47 -07:00
|
|
|
|
2010-12-26 07:26:01 -08:00
|
|
|
src = fetchurl {
|
2015-11-22 05:45:09 -08:00
|
|
|
url = "http://download.kde.org/stable/qca/2.1.1/src/qca-2.1.1.tar.xz";
|
|
|
|
sha256 = "10z9icq28fww4qbzwra8d9z55ywbv74qk68nhiqfrydm21wkxplm";
|
2010-12-26 07:26:01 -08:00
|
|
|
};
|
2011-03-02 10:50:00 -08:00
|
|
|
|
2015-03-30 16:50:47 -07:00
|
|
|
nativeBuildInputs = [ cmake pkgconfig ];
|
|
|
|
buildInputs = [ qt ];
|
2011-07-11 03:49:21 -07:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
2015-03-30 16:50:47 -07:00
|
|
|
|
2015-12-02 01:42:02 -08:00
|
|
|
patches = [ ./libressl.patch ];
|
|
|
|
|
2010-12-26 07:26:01 -08: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 10:50:55 -07:00
|
|
|
platforms = platforms.linux;
|
2010-12-26 07:26:01 -08:00
|
|
|
};
|
|
|
|
}
|