mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-05 20:11:43 +03: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 ];
|
||
|
}
|