python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / alkimia / default.nix
blobb1c040a057ecb05b4070f1727f1302a224425998
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.1.1";
10   src = fetchurl {
11     url = "mirror://kde/stable/alkimia/${version}/${pname}-${version}.tar.xz";
12     sha256 = "sha256-lXrcY8C+VN1DPjJoo3MjvlRW5auE7OJ/c6FhapLbhtU=";
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   };