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

15 lines
295 B
Nix
Raw Normal View History

{ cmake, kde, automoc4, kdelibs }:
kde.package rec {
name = "kde-emotion-icons-${kde.release}";
buildInputs = [ cmake automoc4 kdelibs ];
meta = {
description = "Additional KDE emotion icons (smiles)";
kde = {
name = "emoticons";
module = "kdeartwork";
};
};
}