nixpkgs/pkgs/kde/frameworks/kwindowsystem/default.nix

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

14 lines
224 B
Nix
Raw Normal View History

{
mkKdeDerivation,
qttools,
qtdeclarative,
qtwayland,
pkg-config,
}:
mkKdeDerivation {
pname = "kwindowsystem";
extraNativeBuildInputs = [qttools pkg-config];
2024-05-10 14:48:51 +01:00
extraBuildInputs = [qtdeclarative qtwayland];
}