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

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