mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-19 20:23:02 +00:00
15 lines
270 B
Nix
15 lines
270 B
Nix
{ mkDerivation
|
|
, extra-cmake-modules
|
|
, qtbase, qtx11extras, wayland
|
|
}:
|
|
|
|
mkDerivation {
|
|
pname = "kguiaddons";
|
|
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
buildInputs = [ qtx11extras wayland ];
|
|
propagatedBuildInputs = [ qtbase ];
|
|
|
|
outputs = [ "out" "dev" ];
|
|
}
|