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

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