summary refs log tree commit diff
path: root/pkgs/development/libraries/kde-frameworks-5.14/kemoticons.nix
blob: d165f84e3a2dd71ae68743b78ac31e05c715c5a0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ kdeFramework, lib
, extra-cmake-modules
, karchive
, kconfig
, kcoreaddons
, kservice
}:

kdeFramework {
  name = "kemoticons";
  nativeBuildInputs = [ extra-cmake-modules ];
  buildInputs = [ karchive kconfig kcoreaddons ];
  propagatedBuildInputs = [ kservice ];
  meta = {
    maintainers = [ lib.maintainers.ttuegel ];
  };
}