nixpkgs/pkgs/development/libraries/qt-5/5.9/qtwayland.nix

14 lines
349 B
Nix
Raw Normal View History

{ qtSubmodule, qtbase, qtquickcontrols, wayland, pkgconfig }:
qtSubmodule {
name = "qtwayland";
qtInputs = [ qtbase qtquickcontrols ];
buildInputs = [ wayland ];
nativeBuildInputs = [ pkgconfig ];
outputs = [ "bin" "dev" "out" ];
2017-05-19 00:19:42 +01:00
postInstall = ''
moveToOutput "$qtPluginPrefix" "$bin"
moveToOutput "$qtQmlPrefix" "$bin"
2017-05-19 00:19:42 +01:00
'';
}