10 lines
240 B
Nix
10 lines
240 B
Nix
{ qtModule, qtbase, qtquickcontrols, wayland, pkg-config }:
|
|
|
|
qtModule {
|
|
pname = "qtwayland";
|
|
qtInputs = [ qtbase qtquickcontrols ];
|
|
buildInputs = [ wayland ];
|
|
nativeBuildInputs = [ pkg-config ];
|
|
outputs = [ "out" "dev" "bin" ];
|
|
}
|