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:
parent
5370b8267c
commit
d2b8d8bddc
|
@ -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;
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in New Issue