3a4df29a92
GitOrigin-RevId: 3d7435c638baffaa826b85459df0fff47f12317d
16 lines
261 B
Nix
16 lines
261 B
Nix
{ qtModule
|
|
, qtbase
|
|
, qtquick3d
|
|
, qtdeclarative
|
|
, wayland
|
|
, pkg-config
|
|
, xlibsWrapper
|
|
, libdrm
|
|
}:
|
|
|
|
qtModule {
|
|
pname = "qtwayland";
|
|
qtInputs = [ qtbase qtdeclarative ];
|
|
buildInputs = [ wayland xlibsWrapper libdrm ];
|
|
nativeBuildInputs = [ pkg-config ];
|
|
}
|