Package wallpaper-engine-kde-plugin-lib

This commit is contained in:
Invariantspace 2023-08-11 19:51:41 -07:00
parent c8a0f06124
commit 45558c87ae
4 changed files with 139 additions and 1 deletions

View file

@ -0,0 +1,28 @@
{ inputs, pkgs }:
with pkgs; stdenv.mkDerivation rec {
name = "wallpaper-engine-kde-plugin-lib";
src = inputs.${name};
nativeBuildInputs = [
cmake
extra-cmake-modules
];
buildInputs = with libsForQt5; [
plasma-framework
plasma-workspace
qt5.qtx11extras
qt5.qtdeclarative
qt5.qtwebchannel
qt5.wrapQtAppsHook
] ++ [
gst_all_1.gst-libav
lz4
mujs
mpv-unwrapped
shaderc
vulkan-headers
vulkan-loader
wayland
];
cmakeFlags = [ "-DUSE_PLASMAPKG=ON" ];
}