mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 23:20:55 +00:00
9 lines
208 B
Nix
9 lines
208 B
Nix
|
{ qtSubmodule, qtbase, qtquickcontrols, wayland, pkgconfig }:
|
||
|
|
||
|
qtSubmodule {
|
||
|
name = "qtwayland";
|
||
|
qtInputs = [ qtbase qtquickcontrols ];
|
||
|
buildInputs = [ wayland ];
|
||
|
nativeBuildInputs = [ pkgconfig ];
|
||
|
}
|