24 lines
436 B
Nix
24 lines
436 B
Nix
|
{ stdenv, cmake, qt6, wayland, wayland-scanner, wayland-protocols, pkg-config, libsForQt5 }: stdenv.mkDerivation {
|
||
|
pname = "layer-shell-qt-nokde";
|
||
|
version = "6.0.80";
|
||
|
|
||
|
src = ./.;
|
||
|
|
||
|
nativeBuildInputs = [
|
||
|
cmake
|
||
|
pkg-config
|
||
|
wayland-scanner
|
||
|
libsForQt5.extra-cmake-modules
|
||
|
];
|
||
|
|
||
|
dontWrapQtApps = true;
|
||
|
|
||
|
buildInputs = [
|
||
|
qt6.qtbase
|
||
|
qt6.qtdeclarative
|
||
|
qt6.qtwayland
|
||
|
wayland
|
||
|
wayland-protocols
|
||
|
];
|
||
|
}
|