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 {
|
2017-02-19 17:35:22 +00:00
|
|
|
name = "qca-${version}";
|
|
|
|
version = "2.1.3";
|
2015-03-30 23:50:47 +00:00
|
|
|
|
2010-12-26 15:26:01 +00:00
|
|
|
src = fetchurl {
|
2017-02-19 17:35:22 +00:00
|
|
|
url = "http://download.kde.org/stable/qca/${version}/src/qca-${version}.tar.xz";
|
|
|
|
sha256 = "0lz3n652z208daxypdcxiybl0a9fnn6ida0q7fh5f42269mdhgq0";
|
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
|
|
|
|
2010-12-26 15:26:01 +00:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Qt Cryptographic Architecture";
|
|
|
|
license = "LGPL";
|
|
|
|
homepage = http://delta.affinix.com/qca;
|
2017-03-27 17:11:17 +00:00
|
|
|
maintainers = [ maintainers.sander ];
|
2016-08-02 17:50:55 +00:00
|
|
|
platforms = platforms.linux;
|
2010-12-26 15:26:01 +00:00
|
|
|
};
|
|
|
|
}
|