9405df4a82
GitOrigin-RevId: 8e4fe32876ca15e3d5eb3ecd3ca0b224417f5f17
14 lines
269 B
Nix
14 lines
269 B
Nix
{ mkDerivation
|
|
, extra-cmake-modules
|
|
, qtbase, qtx11extras, wayland
|
|
}:
|
|
|
|
mkDerivation {
|
|
name = "kguiaddons";
|
|
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
buildInputs = [ qtx11extras wayland ];
|
|
propagatedBuildInputs = [ qtbase ];
|
|
|
|
outputs = [ "out" "dev" ];
|
|
}
|