nixpkgs/pkgs/desktops/kde-4.5/artwork/emoticons.nix

16 lines
325 B
Nix
Raw Normal View History

{ 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";
};
};
}