linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / libraries / alkimia / default.nix
blob18c40c5b5fb3806ae848dd894b0243ceee943e9a
1 { mkDerivation, fetchurl, lib
2 , extra-cmake-modules, doxygen, graphviz, qtbase, qtwebkit, mpir
3 , kdelibs4support, plasma-framework, knewstuff, kpackage
4 }:
6 mkDerivation rec {
7   pname = "alkimia";
8   version = "8.0.4";
10   src = fetchurl {
11     url = "mirror://kde/stable/alkimia/${version}/${pname}-${version}.tar.xz";
12     sha256 = "sha256-AASnBo3/CqLLb0f3DSHBKQc74R8u2yHxRRK8RHBIfR8=";
13   };
15   nativeBuildInputs = [ extra-cmake-modules doxygen graphviz ];
17   buildInputs = [ qtbase qtwebkit kdelibs4support plasma-framework knewstuff kpackage ];
18   propagatedBuildInputs = [ mpir ];
20   meta = {
21     description = "Library used by KDE finance applications";
22     longDescription = ''
23       Alkimia is the infrastructure for common storage and business
24       logic that will be used by all financial applications in KDE.
26       The target is to share financial related information over
27       application bounderies.
28     '';
29     license = lib.licenses.lgpl21Plus;
30     platforms = qtbase.meta.platforms;
31   };