mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-01 18:44:07 +00:00
87818caa00
Validated as no change in `out` output with `diffoscope`.
16 lines
233 B
Nix
16 lines
233 B
Nix
{ qtModule
|
|
, qtbase
|
|
, qtquick3d
|
|
, qtdeclarative
|
|
, wayland
|
|
, pkg-config
|
|
, libdrm
|
|
}:
|
|
|
|
qtModule {
|
|
pname = "qtwayland";
|
|
qtInputs = [ qtbase qtdeclarative ];
|
|
buildInputs = [ wayland libdrm ];
|
|
nativeBuildInputs = [ pkg-config ];
|
|
}
|