mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-23 14:13:35 +00:00
10 lines
240 B
Nix
10 lines
240 B
Nix
{ qtModule, qtbase, qtquickcontrols, wayland, pkg-config }:
|
|
|
|
qtModule {
|
|
pname = "qtwayland";
|
|
qtInputs = [ qtbase qtquickcontrols ];
|
|
buildInputs = [ wayland ];
|
|
nativeBuildInputs = [ pkg-config ];
|
|
outputs = [ "out" "dev" "bin" ];
|
|
}
|