summary refs log tree commit diff
path: root/pkgs/development/libraries/kde-frameworks/kxmlrpcclient.nix
blob: aa334d69ef1d37f707c1b321debf28c072817e1e (plain) (blame)
1
2
3
4
5
6
7
8
9
{ mkDerivation, extra-cmake-modules, ki18n, kio }:

mkDerivation {
  name = "kxmlrpcclient";
  nativeBuildInputs = [ extra-cmake-modules ];
  buildInputs = [ ki18n ];
  propagatedBuildInputs = [ kio ];
  outputs = [ "out" "dev" ];
}