Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

42 lines
643 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
stdenv,
sources,
cmake,
pkg-config,
libsForQt5,
wayland-scanner,
plasma-wayland-protocols,
wayland,
wayland-protocols,
}:
# not mkKdeDerivation because this is Qt5 land
stdenv.mkDerivation rec {
pname = "kwayland-integration";
inherit (sources.${pname}) version;
src = sources.${pname};
nativeBuildInputs = [
cmake
pkg-config
libsForQt5.extra-cmake-modules
];
buildInputs = [
libsForQt5.qtbase
libsForQt5.qtwayland
libsForQt5.kwayland
libsForQt5.kwindowsystem
plasma-wayland-protocols
wayland
wayland-protocols
wayland-scanner
];
dontWrapQtApps = true;
}