alkimia: init at 7.0.1

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>
This commit is contained in:
aszlig 2018-04-28 01:32:32 +02:00
parent 5370b8267c
commit d2b8d8bddc
No known key found for this signature in database
GPG Key ID: 684089CE67EBB691
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,24 @@
{ 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;
};
}

View File

@ -11181,6 +11181,8 @@ with pkgs;
accounts-qt = callPackage ../development/libraries/accounts-qt { };
alkimia = callPackage ../development/libraries/alkimia { };
fcitx-qt5 = callPackage ../tools/inputmethods/fcitx/fcitx-qt5.nix { };
qgpgme = callPackage ../development/libraries/gpgme { };