2018-04-28 00:32:32 +01:00
|
|
|
{ mkDerivation, fetchurl, lib
|
|
|
|
, extra-cmake-modules, doxygen, graphviz, qtbase, mpir
|
|
|
|
}:
|
|
|
|
|
|
|
|
mkDerivation rec {
|
|
|
|
name = "alkimia-${version}";
|
|
|
|
version = "7.0.1";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://kde/stable/alkimia/${version}/src/${name}.tar.xz";
|
|
|
|
sha256 = "1fri76465058fgsyrmdrc3hj1javz4g10mfzqp5rsj7qncjr1i22";
|
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ extra-cmake-modules doxygen graphviz ];
|
|
|
|
|
|
|
|
buildInputs = [ qtbase ];
|
|
|
|
propagatedBuildInputs = [ mpir ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Library used by KDE finance applications";
|
2018-04-28 12:53:07 +01:00
|
|
|
longDescription = ''
|
|
|
|
Alkimia is the infrastructure for common storage and business
|
|
|
|
logic that will be used by all financial applications in KDE.
|
|
|
|
|
|
|
|
The target is to share financial related information over
|
|
|
|
application bounderies.
|
|
|
|
'';
|
2018-04-28 00:32:32 +01:00
|
|
|
license = lib.licenses.lgpl21Plus;
|
|
|
|
platforms = qtbase.meta.platforms;
|
|
|
|
};
|
|
|
|
}
|