2018-04-28 00:32:32 +01:00
|
|
|
{ mkDerivation, fetchurl, lib
|
2019-05-12 22:29:00 +01:00
|
|
|
, extra-cmake-modules, doxygen, graphviz, qtbase, qtwebkit, mpir
|
|
|
|
, kdelibs4support, plasma-framework, knewstuff, kpackage
|
2018-04-28 00:32:32 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
mkDerivation rec {
|
|
|
|
name = "alkimia-${version}";
|
2019-05-12 22:29:00 +01:00
|
|
|
version = "8.0.1";
|
2018-04-28 00:32:32 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-05-12 22:29:00 +01:00
|
|
|
url = "mirror://kde/stable/alkimia/${version}/${name}.tar.xz";
|
|
|
|
sha256 = "059i6vn36sdq5zn2vqzh4asvvgdgs7n478nk9phvb5gdys01fq7m";
|
2018-04-28 00:32:32 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ extra-cmake-modules doxygen graphviz ];
|
|
|
|
|
2019-05-12 22:29:00 +01:00
|
|
|
buildInputs = [ qtbase qtwebkit kdelibs4support plasma-framework knewstuff kpackage ];
|
2018-04-28 00:32:32 +01:00
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|