d2b8d8bddc
This is used by KMyMoney and also the reason why I needed to add C++ support to MPIR in the parent commit. The reason why I didn't add myself as a maintainer is because I'm not personally using KMyMoney and thus Alkimia. Signed-off-by: aszlig <aszlig@nix.build>
24 lines
614 B
Nix
24 lines
614 B
Nix
{ 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";
|
|
license = lib.licenses.lgpl21Plus;
|
|
platforms = qtbase.meta.platforms;
|
|
};
|
|
}
|