0b8e02e744
Otherwise, it defaults to https://kde.org/, which doesn't have anything on it specific to kguiaddons.
16 lines
388 B
Nix
16 lines
388 B
Nix
{ mkDerivation
|
|
, extra-cmake-modules
|
|
, qtbase, qtx11extras, wayland, plasma-wayland-protocols
|
|
}:
|
|
|
|
mkDerivation {
|
|
pname = "kguiaddons";
|
|
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
buildInputs = [ qtx11extras wayland plasma-wayland-protocols ];
|
|
propagatedBuildInputs = [ qtbase ];
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
meta.homepage = "https://invent.kde.org/frameworks/kguiaddons";
|
|
}
|