nixpkgs/pkgs/development/libraries/alkimia/default.nix
aszlig 9e88342641
alkimia: Add meta.longDescription
@7c6f434c wrote in [1]:

   Maybe copy-paste the upstream "Alkimia is the infrastructure for
   common storage and business logic that will be used by all financial
   applications in KDE. The target is to share financial related
   information over application bounderies." as longDescription for
   Alkimia? The current description makes me want to look up the
   homepage to find out what it actually is (then I do, and despair).

[1]: https://github.com/NixOS/nixpkgs/pull/39647#issuecomment-385169261

Signed-off-by: aszlig <aszlig@nix.build>
2018-04-28 13:53:07 +02:00

32 lines
878 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";
longDescription = ''
Alkimia is the infrastructure for common storage and business
logic that will be used by all financial applications in KDE.
The target is to share financial related information over
application bounderies.
'';
license = lib.licenses.lgpl21Plus;
platforms = qtbase.meta.platforms;
};
}