a66bca1520
GitOrigin-RevId: 40f79f003b6377bd2f4ed4027dde1f8f922995dd
15 lines
233 B
Nix
15 lines
233 B
Nix
{ qtModule
|
|
, qtbase
|
|
, qtquick3d
|
|
, qtdeclarative
|
|
, wayland
|
|
, pkg-config
|
|
, libdrm
|
|
}:
|
|
|
|
qtModule {
|
|
pname = "qtwayland";
|
|
qtInputs = [ qtbase qtdeclarative ];
|
|
buildInputs = [ wayland libdrm ];
|
|
nativeBuildInputs = [ pkg-config ];
|
|
}
|