summary refs log tree commit diff
path: root/pkgs/applications/maui/mauikit-imagetools.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/maui/mauikit-imagetools.nix')
-rw-r--r--pkgs/applications/maui/mauikit-imagetools.nix36
1 files changed, 36 insertions, 0 deletions
diff --git a/pkgs/applications/maui/mauikit-imagetools.nix b/pkgs/applications/maui/mauikit-imagetools.nix
new file mode 100644
index 00000000000..3788c50cd44
--- /dev/null
+++ b/pkgs/applications/maui/mauikit-imagetools.nix
@@ -0,0 +1,36 @@
+{ lib
+, mkDerivation
+, cmake
+, extra-cmake-modules
+, kconfig
+, kio
+, mauikit
+, qtlocation
+, exiv2
+, kquickimageedit
+}:
+
+mkDerivation {
+  pname = "mauikit-imagetools";
+
+  nativeBuildInputs = [
+    cmake
+    extra-cmake-modules
+  ];
+
+  buildInputs = [
+    kconfig
+    kio
+    mauikit
+    qtlocation
+    exiv2
+    kquickimageedit
+  ];
+
+  meta = with lib; {
+    homepage = "https://invent.kde.org/maui/mauikit-imagetools";
+    description = "MauiKit Image Tools Components";
+    license = licenses.lgpl21Plus;
+    maintainers = with maintainers; [ onny ];
+  };
+}