forked from mirrors/nixpkgs
10 lines
237 B
Nix
10 lines
237 B
Nix
|
{ qtModule, qtbase, qtquickcontrols, wayland, pkgconfig }:
|
||
|
|
||
|
qtModule {
|
||
|
name = "qtwayland";
|
||
|
qtInputs = [ qtbase qtquickcontrols ];
|
||
|
buildInputs = [ wayland ];
|
||
|
nativeBuildInputs = [ pkgconfig ];
|
||
|
outputs = [ "out" "dev" "bin" ];
|
||
|
}
|