nixpkgs/pkgs/development/libraries/qt-5/modules/qtwayland.nix

10 lines
237 B
Nix
Raw Normal View History

{ qtModule, qtbase, qtquickcontrols, wayland, pkgconfig }:
qtModule {
name = "qtwayland";
qtInputs = [ qtbase qtquickcontrols ];
buildInputs = [ wayland ];
nativeBuildInputs = [ pkgconfig ];
outputs = [ "out" "dev" "bin" ];
}