mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 15:11:35 +00:00
14 lines
348 B
Nix
14 lines
348 B
Nix
{ qtSubmodule, qtbase, qtquickcontrols, wayland, pkgconfig }:
|
|
|
|
qtSubmodule {
|
|
name = "qtwayland";
|
|
qtInputs = [ qtbase qtquickcontrols ];
|
|
buildInputs = [ wayland ];
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
outputs = [ "out" "dev" "bin" ];
|
|
postInstall = ''
|
|
moveToOutput "$qtPluginPrefix" "$bin"
|
|
moveToOutput "$qtQmlPrefix "$bin"
|
|
'';
|
|
}
|