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

16 lines
320 B
Nix
Raw Normal View History

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