about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/alkimia
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/libraries/alkimia')
-rw-r--r--nixpkgs/pkgs/development/libraries/alkimia/default.nix32
1 files changed, 32 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/libraries/alkimia/default.nix b/nixpkgs/pkgs/development/libraries/alkimia/default.nix
new file mode 100644
index 000000000000..407aa557ea2e
--- /dev/null
+++ b/nixpkgs/pkgs/development/libraries/alkimia/default.nix
@@ -0,0 +1,32 @@
+{ mkDerivation, fetchurl, lib
+, extra-cmake-modules, doxygen, graphviz, qtbase, qtwebkit, mpir
+, kdelibs4support, plasma-framework, knewstuff, kpackage
+}:
+
+mkDerivation rec {
+  pname = "alkimia";
+  version = "8.0.1";
+
+  src = fetchurl {
+    url = "mirror://kde/stable/alkimia/${version}/${pname}-${version}.tar.xz";
+    sha256 = "059i6vn36sdq5zn2vqzh4asvvgdgs7n478nk9phvb5gdys01fq7m";
+  };
+
+  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;
+  };
+}