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

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