summary refs log tree commit diff
path: root/pkgs/development/libraries/kde-frameworks-5.13/kcoreaddons.nix
blob: 43c21bb51ef577ba5ca4c092e13068ca1a868963 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ kdeFramework, lib
, extra-cmake-modules
, shared_mime_info
}:

kdeFramework {
  name = "kcoreaddons";
  nativeBuildInputs = [ extra-cmake-modules ];
  buildInputs = [ shared_mime_info ];
  meta = {
    maintainers = [ lib.maintainers.ttuegel ];
  };
}