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

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