libsForQt5.mauiPackages.pix: init at 2.1.2

authored by

Jonas Heinrich and committed by
Robert Schütz
42da4ace 3bf346ea

+53
+1
pkgs/applications/maui/default.nix
··· 74 communicator = callPackage ./communicator.nix { }; 75 index = callPackage ./index.nix { }; 76 nota = callPackage ./nota.nix { }; 77 shelf = callPackage ./shelf.nix { }; 78 vvave = callPackage ./vvave.nix { }; 79 };
··· 74 communicator = callPackage ./communicator.nix { }; 75 index = callPackage ./index.nix { }; 76 nota = callPackage ./nota.nix { }; 77 + pix = callPackage ./pix.nix { }; 78 shelf = callPackage ./shelf.nix { }; 79 vvave = callPackage ./vvave.nix { }; 80 };
+52
pkgs/applications/maui/pix.nix
···
··· 1 + { lib 2 + , mkDerivation 3 + , cmake 4 + , extra-cmake-modules 5 + , applet-window-buttons 6 + , karchive 7 + , kcoreaddons 8 + , ki18n 9 + , kio 10 + , kirigami2 11 + , mauikit 12 + , mauikit-filebrowsing 13 + , mauikit-imagetools 14 + , qtmultimedia 15 + , qtquickcontrols2 16 + , qtlocation 17 + , exiv2 18 + , kquickimageedit 19 + }: 20 + 21 + mkDerivation { 22 + pname = "pix"; 23 + 24 + nativeBuildInputs = [ 25 + cmake 26 + extra-cmake-modules 27 + ]; 28 + 29 + buildInputs = [ 30 + applet-window-buttons 31 + karchive 32 + kcoreaddons 33 + ki18n 34 + kio 35 + kirigami2 36 + mauikit 37 + mauikit-filebrowsing 38 + mauikit-imagetools 39 + qtmultimedia 40 + qtquickcontrols2 41 + qtlocation 42 + exiv2 43 + kquickimageedit 44 + ]; 45 + 46 + meta = with lib; { 47 + description = "Image gallery application"; 48 + homepage = "https://invent.kde.org/maui/pix"; 49 + license = licenses.gpl3Plus; 50 + maintainers = with maintainers; [ onny ]; 51 + }; 52 + }