mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-25 23:23:07 +00:00
cd7d8a60b4
Qt 5.8 is now the default version.
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 ];
|
|
}
|