mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-08 05:54:24 +00:00
17 lines
261 B
Nix
17 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 ];
|
|
}
|