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

10 lines
239 B
Nix
Raw Normal View History

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