My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/libraries/alkimia/default.nix

32 lines
1003 B

{ mkDerivation, fetchurl, lib
, extra-cmake-modules, doxygen, graphviz, qtbase, qtwebkit, mpir
, kdelibs4support, plasma-framework, knewstuff, kpackage
}:
mkDerivation rec {
pname = "alkimia";
version = "8.1.0";
src = fetchurl {
url = "mirror://kde/stable/alkimia/${version}/${pname}-${version}.tar.xz";
sha256 = "sha256-kWgHNScHsEkM3ZymVoLv9zsAylIwKb2m/nonSaG8knw=";
};
nativeBuildInputs = [ extra-cmake-modules doxygen graphviz ];
buildInputs = [ qtbase qtwebkit kdelibs4support plasma-framework knewstuff kpackage ];
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;
};
}