Minor changes to reduce kde build deps

This commit is contained in:
outfoxxed 2024-01-23 05:12:40 -08:00
parent f1e50306f8
commit 97b759c92a
Signed by: outfoxxed
GPG key ID: 4C88A185FB89301E
5 changed files with 69 additions and 7 deletions

23
default.nix Normal file
View file

@ -0,0 +1,23 @@
{ 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
];
}