Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

libsForQt5.mauiPackages.booth: init at 1.0.0

authored by

Milan Hauth and committed by
Robert Schütz
e78a5590 5210e379

+53
+52
pkgs/applications/maui/booth.nix
··· 1 + { lib 2 + , mkDerivation 3 + , cmake 4 + , extra-cmake-modules 5 + , kcoreaddons 6 + , ki18n 7 + , kirigami2 8 + , mauikit 9 + , mauikit-filebrowsing 10 + , qtgraphicaleffects 11 + , qtmultimedia 12 + , qtquickcontrols2 13 + , gst_all_1 14 + }: 15 + 16 + mkDerivation { 17 + pname = "booth"; 18 + 19 + nativeBuildInputs = [ 20 + cmake 21 + extra-cmake-modules 22 + ]; 23 + 24 + buildInputs = [ 25 + kcoreaddons 26 + ki18n 27 + kirigami2 28 + mauikit 29 + mauikit-filebrowsing 30 + qtgraphicaleffects 31 + qtmultimedia 32 + qtquickcontrols2 33 + ] ++ (with gst_all_1; [ 34 + gst-plugins-bad 35 + gst-plugins-base 36 + gst-plugins-good 37 + gstreamer 38 + ]); 39 + 40 + preFixup = '' 41 + qtWrapperArgs+=( 42 + --prefix GST_PLUGIN_SYSTEM_PATH_1_0 : "$GST_PLUGIN_SYSTEM_PATH_1_0" 43 + ) 44 + ''; 45 + 46 + meta = with lib; { 47 + description = "Camera application"; 48 + homepage = "https://invent.kde.org/maui/booth"; 49 + license = licenses.gpl3Plus; 50 + maintainers = with maintainers; [ milahu ]; 51 + }; 52 + }
+1
pkgs/applications/maui/default.nix
··· 70 70 mauiman = callPackage ./mauiman.nix { }; 71 71 72 72 # applications 73 + booth = callPackage ./booth.nix { }; 73 74 buho = callPackage ./buho.nix { }; 74 75 clip = callPackage ./clip.nix { }; 75 76 communicator = callPackage ./communicator.nix { };