From 42da4ace4c9c320deb3935e74b7755bc7dce678c Mon Sep 17 00:00:00 2001 From: Jonas Heinrich Date: Wed, 12 Jan 2022 12:31:37 +0100 Subject: libsForQt5.mauiPackages.pix: init at 2.1.2 --- pkgs/applications/maui/default.nix | 1 + pkgs/applications/maui/pix.nix | 52 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 53 insertions(+) create mode 100644 pkgs/applications/maui/pix.nix diff --git a/pkgs/applications/maui/default.nix b/pkgs/applications/maui/default.nix index e0684f68fec..97cc9a92e6d 100644 --- a/pkgs/applications/maui/default.nix +++ b/pkgs/applications/maui/default.nix @@ -74,6 +74,7 @@ let communicator = callPackage ./communicator.nix { }; index = callPackage ./index.nix { }; nota = callPackage ./nota.nix { }; + pix = callPackage ./pix.nix { }; shelf = callPackage ./shelf.nix { }; vvave = callPackage ./vvave.nix { }; }; diff --git a/pkgs/applications/maui/pix.nix b/pkgs/applications/maui/pix.nix new file mode 100644 index 00000000000..6794da74c3a --- /dev/null +++ b/pkgs/applications/maui/pix.nix @@ -0,0 +1,52 @@ +{ lib +, mkDerivation +, cmake +, extra-cmake-modules +, applet-window-buttons +, karchive +, kcoreaddons +, ki18n +, kio +, kirigami2 +, mauikit +, mauikit-filebrowsing +, mauikit-imagetools +, qtmultimedia +, qtquickcontrols2 +, qtlocation +, exiv2 +, kquickimageedit +}: + +mkDerivation { + pname = "pix"; + + nativeBuildInputs = [ + cmake + extra-cmake-modules + ]; + + buildInputs = [ + applet-window-buttons + karchive + kcoreaddons + ki18n + kio + kirigami2 + mauikit + mauikit-filebrowsing + mauikit-imagetools + qtmultimedia + qtquickcontrols2 + qtlocation + exiv2 + kquickimageedit + ]; + + meta = with lib; { + description = "Image gallery application"; + homepage = "https://invent.kde.org/maui/pix"; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ onny ]; + }; +} -- cgit 1.4.1