about summary refs log tree commit diff
path: root/pkgs/desktops/kde-4.5/artwork/emoticons.nix
blob: a9d2a2268353bfe096a819ba1133068e713d454d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ cmake, kde, automoc4, kdelibs }:

kde.package rec {
  name = "kde-emotion-icons-${meta.kde.version}";

  buildInputs = [ cmake automoc4 kdelibs ];
  meta = {
    description = "Additional KDE emotion icons (smiles)";
    kde = {
      name = "emoticons";
      module = "kdeartwork";
      version = "4.5.1";
    };
  };
}