c7cb07f092
GitOrigin-RevId: 1536926ef5621b09bba54035ae2bb6d806d72ac8
14 lines
234 B
Nix
14 lines
234 B
Nix
{ qtModule
|
|
, qtbase
|
|
, qtdeclarative
|
|
, wayland
|
|
, pkg-config
|
|
, libdrm
|
|
}:
|
|
|
|
qtModule {
|
|
pname = "qtwayland";
|
|
propagatedBuildInputs = [ qtbase qtdeclarative ];
|
|
buildInputs = [ wayland libdrm ];
|
|
nativeBuildInputs = [ pkg-config ];
|
|
}
|